generated from unplugin/unplugin-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "@pinceau/pigments",
"version": "1.0.0-beta.29",
"homepage": "https://github.com/Tahul/pinceau#readme",
"bugs": {
"url": "https://github.com/Tahul/pinceau/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tahul/pinceau.git"
},
"type": "module",
"exports": {
".": {
"types": "./theme.config.ts",
"import": "./theme.config.ts",
"require": "./theme.config.ts"
},
"./theme.config": {
"types": "./theme.config.ts",
"import": "./theme.config.ts",
"require": "./theme.config.ts"
}
},
"main": "./theme.config.ts",
"module": "./theme.config.ts",
"types": "./theme.config.ts",
"files": [
"theme.config.ts"
],
"scripts": {
"build:prepare": "pnpm run build:base",
"build:base": "vite build -c vite.config.base.ts && rm -rf dist",
"build:react": "vite build -c vite.config.react.ts && rm -rf dist",
"build:svelte": "vite build -c vite.config.svelte.ts && rm -rf dist",
"build:vue": "vite build -c vite.config.vue.ts && rm -rf dist",
"clean": "rm -rf dist"
},
"devDependencies": {
"@pinceau/core": "workspace:*",
"@pinceau/configs": "workspace:*",
"@pinceau/outputs": "workspace:*",
"@pinceau/svelte": "workspace:*",
"@pinceau/react": "workspace:*",
"@pinceau/vue": "workspace:*",
"@pinceau/theme": "workspace:*",
"@pinceau/style": "workspace:*",
"@pinceau/runtime": "workspace:*",
"pinceau": "workspace:*",
"vite": "^5.0.5"
}
}