-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "@cherryhoax/discoui",
"version": "0.9.0",
"description": "Custom elements with vanilla JS, Shadow DOM, and SCSS",
"main": "dist/discoui.mjs",
"types": "src/index.d.ts",
"files": [
"dist/",
"src/",
"assets/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "npx vite --host",
"build": "npx vite build",
"watch": "npx vite",
"types": "npx tsc -p tsconfig.types.json",
"start": "npm run dev",
"prepublishOnly": "npm run build",
"test": "npm run test:unit",
"test:unit": "npx vitest run",
"test:unit:watch": "npx vitest",
"test:e2e": "npx playwright test",
"version:patch": "npm version patch -m 'chore: release v%s'",
"version:minor": "npm version minor -m 'chore: release v%s'",
"version:major": "npm version major -m 'chore: release v%s'",
"release:patch": "npm run version:patch && git push && git push --tags",
"release:minor": "npm run version:minor && git push && git push --tags",
"release:major": "npm run version:major && git push && git push --tags"
},
"keywords": [
"web-components",
"shadow-dom",
"scss",
"webpack"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cherryhoax/DiscoUI.git"
},
"dependencies": {
"@fontsource/open-sans": "^5.2.7",
"@olton/metroui": "^5.1.20",
"b-spline": "^2.0.2",
"sass": "^1.97.3",
"vite": "^7.3.1"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"jsdom": "^28.0.0",
"less": "^4.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}