-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 KB
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
63
64
65
66
67
68
{
"name": "@celerix/spectrum",
"version": "0.1.2",
"description": "Framework-agnostic primitives for color and layout.",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"author": {
"name": "Marc W. Donkers",
"email": "marc@mixxy.nl",
"url": "https://celerix.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/celerix-dev/celerix-spectrum.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./vue": {
"types": "./dist/vue.d.ts",
"import": "./dist/vue.js"
},
"./unoPreset": {
"types": "./dist/unoPreset.d.ts",
"import": "./dist/unoPreset.js"
},
"./ui": {
"types": "./dist/ui.d.ts",
"import": "./dist/ui.js"
},
"./css": "./dist/celerix-spectrum.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"prepublishOnly": "npm run build",
"preview": "vite preview",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.4",
"typescript": "~5.9.3",
"unocss": "^66.6.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vue": "~3.5.28"
},
"peerDependencies": {
"vue": "^3.2.0",
"unocss": "^0.60.0"
},
"peerDependenciesMeta": {
"unocss": {
"optional": true
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}