-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 3.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "fictoan-react",
"version": "1.11.9-alpha.4",
"private": false,
"description": "A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.",
"repository": {
"type": "git",
"url": "https://github.com/fictoan/fictoan-react"
},
"bugs": {
"url": "https://github.com/fictoan/fictoan-react/issues"
},
"homepage": "https://fictoan.io",
"type": "module",
"sideEffects": [
"./src/styles/*.css",
"./src/components/**/typography.css"
],
"files": [
"dist",
"dist/types"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
},
"./components/*": {
"types": "./dist/types/components/*.d.ts",
"default": "./dist/components/*.js"
},
"./dist/": "./dist/"
},
"scripts": {
"watch": "vite build --watch",
"build": "tsc && vite build",
"build:umd": "tsc && vite build -c vite.config.umd.js",
"tree-shake": "agadoo",
"test": "echo \"Error: no test specified\" && exit 1",
"generate-colours": "tsx scripts/generateColourClasses.ts"
},
"keywords": [
"react",
"ui",
"library",
"component",
"framework",
"components",
"ui-library",
"react-library",
"fictoan",
"fictoan-react"
],
"author": "Sujan Sundareswaran <[email protected]> (https://sujansundareswaran.com)",
"contributors": [
"Naresh <[email protected]> (https://ghostwriternr.me/)",
"Dhruv Misra (https://dhruvmisra.com/)",
"Aditya Gannavarapu <[email protected]> (https://aditya-67.github.io/)",
"Dhiraj Bhakta K <[email protected]>",
"Sreejit De <[email protected]> (https://www.sreejit.dev)",
"Rohit Singhal"
],
"license": "MIT",
"devDependencies": {
"@babel/compat-data": "^7.26.2",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.0",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.1",
"agadoo": "^3.0.0",
"autoprefixer": "^10.4.14",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"glob": "^10.3.10",
"html-react-parser": "^5.1.15",
"postcss": "^8.4.30",
"postcss-nesting": "^12.0.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-visualizer": "^5.11.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"vite": "5.4.6",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-lib-inject-css": "^1.3.0",
"vite-plugin-svgr": "^4.2.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"prismjs": "^1.29.0"
},
"peerDependenciesMeta": {
"prismjs": {
"optional": true
}
}
}