-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.97 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vanilla-bean-components",
"version": "0.0.114",
"type": "module",
"exports": {
"./theme/*": "./theme/*.js",
"./utils/*": "./utils/*.js",
"./package.json": "./package.json",
"./eslint.config.cjs": "./eslint.config.cjs",
"./prettier.config.cjs": "./prettier.config.cjs",
"./spellcheck.config.cjs": "./spellcheck.config.cjs",
"./test-setup.js": "./test-setup.js",
"./FontWithASyntaxHighlighter-Regular.woff2": "./FontWithASyntaxHighlighter-Regular.woff2",
".": "./index.js"
},
"files": [
"/components/**/*",
"/theme/**/*",
"/utils/**/*",
"index.js",
"eslint.config.cjs",
".prettierrc.cjs",
".spellcheck.cjs",
"./FontWithASyntaxHighlighter-Regular.woff2",
"!/components/**/demo.js",
"!/components/**/*.test.js",
"!/utils/**/*.test.js"
],
"description": "JS class-based components",
"author": "justfatlard",
"license": "ISC",
"browserslist": [
"last 1 version",
"> 1%",
"not dead",
"not op_mini all"
],
"scripts": {
"prepare": "bun run prepare:githooks && bun run build",
"prepare:githooks": "[ -n \"$CI\" ] && exit 0 || (git config --local core.hooksPath .githooks || echo 'Can not set git hooks')",
"start": "bun run dev",
"dev": "bun --hot demo/server.js",
"build": "bun run build:clean && bun run build:index && bun run devTools/build.js",
"build:index": "bun run devTools/updateComponentIndex.js && bun run devTools/updateDemoViewIndex.js",
"build:clean": "rm -rf ./*.asText ./demo/build/",
"build:watch": "bun run build -- --watch",
"create:component": "bun run devTools/createComponent.js",
"lint": "bun --bun eslint",
"lint:fix": "bun --bun eslint --fix",
"format": "bun run build && bun run lint:fix && bun --bun prettier --write . | grep -q unchanged",
"version": "npm version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fatlard1993/vanilla-bean-components.git"
},
"bugs": {
"url": "https://github.com/fatlard1993/vanilla-bean-components/issues"
},
"homepage": "https://github.com/fatlard1993/vanilla-bean-components#readme",
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"augmented-ui": "^2.0.0",
"autoprefixer": "^10.4.20",
"nanoid": "^5.0.9",
"postcss": "^8.5.1",
"postcss-nested": "^7.0.2",
"source-code-pro": "^2.38.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.19.0",
"@happy-dom/global-registrator": "^16.7.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.6.1",
"bun-types": "^1.2.0",
"emoji-js": "^3.8.1",
"eslint": "^9.19.0",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-spellcheck": "0.0.20",
"eslint-plugin-testing-library": "^7.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-write-good-comments": "^0.2.0",
"globals": "^15.14.0",
"marked": "^15.0.6",
"moresketchy": "wbern/MoreSketchy.js",
"prettier": "3.4.2"
}
}