-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "quarkc-demo-celebrate",
"version": "0.0.11",
"keywords": [
"frontend",
"quark",
"web components"
],
"scripts": {
"dev": "npm run start",
"start": "vite --open",
"build": "rimraf lib && vite build --config vite.config.build.ts",
"prepublishOnly": "npm run build"
},
"type": "module",
"main": "./lib/index.umd.js",
"module": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.umd.js",
"types": "./lib/types/index.d.ts"
}
},
"dependencies": {
"quarkc": "^1.0.10"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.2.5",
"less": "^4.1.3",
"postcss": "^8.4.24",
"rimraf": "^5.0.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.3.0"
},
"engines": {
"node": ">=14.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/khno/quarkc-demo-celebrate.git"
}
}