-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 921 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
{
"name": "@s4tk/validation",
"version": "0.1.2",
"description": "Utilities for validating packages and resources.",
"license": "MIT",
"author": "frankkulak",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/bePatron?u=40823163"
},
"repository": {
"type": "git",
"url": "https://github.com/sims4toolkit/validation.git"
},
"bugs": {
"url": "https://github.com/sims4toolkit/validation/issues"
},
"main": "validation.js",
"scripts": {
"clean": "rm -rf ./dst/**",
"dev": "npm run clean ; tsc --watch",
"build": "npm run clean ; tsc ; node scripts/prepublish.cjs",
"publish": "npm run build && sh scripts/publish.sh"
},
"dependencies": {
"@s4tk/hashing": "^0.2.1",
"@s4tk/models": "^0.6.14",
"@s4tk/xml-dom": "^0.2.6"
},
"devDependencies": {
"@types/node": "^16.11.7",
"glob": "^10.3.10",
"typescript": "^4.5.4"
}
}