-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 990 Bytes
/
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
{
"name": "@very-simple/components",
"version": "0.6.0",
"description": "A very simple way to attach javascript to the DOM",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/very-simple/components.git"
},
"files": [
"dist/**"
],
"scripts": {
"build": "shx rm -rf ./dist && tsup src/index.ts --minify --dts --format esm",
"dev": "vite",
"prepublishOnly": "npm run build",
"release": "bumpp --all",
"test": "vitest run",
"test:dev": "vitest watch",
"test:types": "tsc --noEmit"
},
"keywords": [
"components",
"vanilla",
"simple",
"DOM",
"attach",
"reuse"
],
"author": "arnoson",
"license": "MIT",
"devDependencies": {
"bumpp": "^9.4.1",
"jsdom": "^24.1.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0"
}
}