-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "@twocatmoon/react-use-class-state",
"version": "0.1.0",
"private": false,
"description": "Automatically generate CSS class names and modifiers based on your component's state.",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc --project tsconfig.build.json && npm run docs:build",
"docs:dev": "npm run docs:build & npx http-server docs",
"docs:build": "npx typedoc src/lib/index.ts --customCss ./docStyles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twocatmoon/react-use-class-state.git"
},
"keywords": [
"react",
"hook",
"css",
"scss",
"sass",
"className",
"class state",
"class modifier",
"bem"
],
"author": "Two-Cat Moon Digital Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/twocatmoon/react-use-class-state/issues"
},
"homepage": "https://github.com/twocatmoon/react-use-class-state#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"typedoc": "^0.22.13",
"typescript": "^4.5.4",
"vite": "^2.9.1"
}
}