-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "css-vars-design-token",
"description": "Use CSS Variables with dark/light mode themes and hooks.",
"version": "1.2.0",
"main": "dist/bundle.js",
"author": "[email protected]",
"license": "ISC",
"types": "dist/css-vars-design-token.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/khtdr/css-vars-design-token"
},
"keywords": [
"css",
"css variables",
"react",
"dark mode",
"light mode",
"design token"
],
"scripts": {
"test": "jest",
"build": "webpack --config webpack.config.js --mode production",
"clean": "rm -rf dist coverage",
"demo": "http-server -p 8080 -o /demo.html",
"lint": "eslint --ignore-pattern coverage --ignore-pattern dist --ignore-pattern '**/*test.*'",
"format": "prettier --write \"./*.{ts,tsx}\"",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"typescript-eslint-parser": "^21.0.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}