-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.61 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@custardui/custardui",
"version": "2.3.0",
"description": "A JavaScript dynamic custom views Library.",
"type": "module",
"main": "dist/custardui.min.js",
"browser": "dist/custardui.min.js",
"unpkg": "dist/custardui.min.js",
"jsdelivr": "dist/custardui.min.js",
"repository": {
"type": "git",
"url": "https://github.com/custardui/custardui.git"
},
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc --project tsconfig.json",
"build:js": "rollup -c",
"release:beta": "npm run build && npm publish --access public --tag beta && git push --follow-tags",
"release:prod": "npm run build && npm publish --access public --tag latest && git push --follow-tags",
"bump:beta": "npm version prerelease --preid=beta",
"bump:patch": "npm version patch",
"bump:minor": "npm version minor",
"bump:major": "npm version major",
"deploydocs:prod": "cd docs && markbind deploy --ci -s site-prod.json",
"deploydocs:beta": "cd docs && markbind deploy --ci -s site-beta.json",
"deploydocs:dev": "npm run build && cd docs && markbind deploy --ci -s site.json",
"dev": "rollup -c -w",
"watch": "rollup -c -w",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --reporter verbose"
},
"keywords": [
"javascript",
"library",
"custom views",
"custardui"
],
"author": "Chan Ger Teck",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tsconfig/svelte": "^5.0.6",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.3.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.3.0",
"jsdom": "^27.0.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"rimraf": "^6.0.1",
"rollup": "^4.46.2",
"rollup-plugin-svelte": "^7.2.3",
"svelte": "^5.46.1",
"svelte-eslint-parser": "^1.4.1",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.54.0",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^3.2.4"
},
"bugs": {
"url": "https://github.com/custardui/custardui/issues"
},
"homepage": "https://github.com/custardui/custardui#readme"
}