-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.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
{
"name": "@lyngs/themer",
"workspaces": [
"lib/*"
],
"description": "Modern Web Theme Manager in JavaScript. Support TailwindCSS preset generation, also support Vue/Reaact.",
"version": "0.4.4",
"author": "shook-lyngs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ShookLyngs/themer.git"
},
"public": false,
"scripts": {
"demo/vue": "vite serve demo/vue",
"demo/react": "vite serve demo/react",
"build": "npm run build --prefix lib/themer && npm run build --prefix lib/themer-vue && npm run build --prefix lib/themer-react",
"sync": "npm run build & npm i",
"release": "npm run release --prefix lib/themer && npm run release --prefix lib/themer-vue && npm run release --prefix lib/themer-react",
"serve": "vite preview"
},
"dependencies": {
"@vitejs/plugin-vue-jsx": "^1.1.2",
"lodash": "^4.17.21",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"vue": "^3.0.5"
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.3",
"@vitejs/plugin-react-refresh": "^1.3.1",
"@vitejs/plugin-vue": "^1.1.4",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.2.5",
"postcss": "^8.2.8",
"tailwindcss": "^2.0.3",
"typescript": "^4.2.2",
"vite": "^2.0.1"
}
}