-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 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
{
"name": "@vitrify/tools",
"version": "0.5.3",
"author": "Stefan van Herwijnen",
"type": "module",
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./render": {
"types": "./dist/types/render/index.d.ts",
"import": "./dist/render/index.js"
},
"./parse": {
"types": "./dist/types/parse/index.d.ts",
"import": "./dist/parse/index.js"
},
"./env": {
"types": "./dist/types/env/index.d.ts",
"import": "./dist/env/index.js"
},
"./scrypt": {
"types": "./dist/types/scrypt/index.d.ts",
"import": "./dist/scrypt/index.js"
}
},
"scripts": {
"build": "tsc"
},
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simsustech/vitrify.git",
"directory": "packages/tools"
},
"bugs": {
"url": "https://github.com/simsustech/vitrify/issues"
},
"homepage": "https://github.com/simsustech/vitrify/tree/master/packages/tools#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^6.0.3",
"vite": "^8.0.14"
},
"dependencies": {
"handlebars": "^4.7.9"
}
}