-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "v_tree",
"version": "1.0.0",
"author": "Sergey Shishkalov <[email protected]>",
"description": "Library for automated initialization of backbone views (or whatever)",
"type": "module",
"main": "dist/vtree.umd.cjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.13",
"@types/jquery": "^3.5.30",
"browserslist-to-esbuild": "^2.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jquery": "^3.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vite": "^5.4.6",
"vite-plugin-dts": "^4.2.1"
},
"dependencies": {
"async_fn": "1.0.0"
},
"peerDependencies": {
"jquery": "^3.6.0"
},
"browserslist": [
"defaults"
],
"engine": {
"node": ">=20"
},
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run typecheck && npm run build",
"test": "jest",
"typecheck": "tsc"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/s0ber/vtree.git"
}
}