-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "@a110/rito",
"version": "0.0.13",
"author": "Collin Monahan <llaenowyd@gmail.com>",
"homepage": "https://llaenowyd.github.io/cushman",
"repository": "github:llaenowyd/cushman",
"license": "ISC",
"scripts": {
"clean": "rimraf dist",
"dev": "vite",
"render-default-palettes": "ts-node -P tsconfig.tsnode.json scripts/tsnode/render-default-palettes.ts dist/styles/default-palettes.css",
"typecheck": "tsc",
"build:prod": "vite build",
"build": "run-s typecheck build:prod render-default-palettes",
"build:watch": "nodemon --watch src -e ts,tsx,css --exec \"yarn build\"",
"preview": "vite preview",
"release-patch": "yarn version --patch && git push --follow-tags"
},
"dependencies": {
"react": "18.x",
"react-dom": "18.x"
},
"devDependencies": {
"@node-minify/clean-css": "^6.2.0",
"@node-minify/core": "^6.2.0",
"@types/node": "^18.7.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"hash-generator": "^0.1.0",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tailwind-colors": "^1.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"vite": "^2.9.7",
"vite-plugin-dts": "^1.1.1"
},
"peerDependencies": {},
"files": [
"dist"
],
"main": "./dist/rito.umd.js",
"module": "./dist/rito.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/rito.es.js",
"require": "./dist/rito.umd.js"
},
"./default-palettes.css": {
"import": "./dist/styles/default-palettes.css",
"require": "./dist/styles/default-palettes.css"
},
"./types": {
"import": "./dist/types/index.d.ts",
"require": "./dist/types/index.d.ts"
}
},
"sideEffects": false
}