-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1023 Bytes
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
{
"name": "vanillajs-toolkit",
"version": "0.1.0",
"description": "",
"type": "module",
"files": ["js"],
"exports": {
"./*": "./js/*"
},
"scripts": {
"start": "serve -s . -l 3000",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prettier": "prettier --write \"**/*.{js,json,ts,tsx,css,scss,html}\"",
"build:blog": "node scripts/build-blog.mjs"
},
"dependencies": {
"prettier": "latest",
"serve": "latest"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.3",
"happy-dom": "^15.7.4",
"prettier-plugin-embed": "^0.4.4",
"vitest": "^2.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantuminformation/vanillajs-toolkit.git"
},
"bugs": {
"url": "https://github.com/quantuminformation/vanillajs-toolkit/issues"
},
"homepage": "https://github.com/quantuminformation/vanillajs-toolkit#readme",
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC"
}