-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "@rr0/data",
"type": "module",
"author": "Jérôme Beau <[email protected]> (https://rr0.org)",
"version": "0.1.2",
"description": "RR0 data model",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20"
},
"license": "MIT",
"homepage": "https://github.com/RR0/data#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/data.git"
},
"scripts": {
"prebuild": "npm install",
"build": "rm -Rf dist && tsc --project tsconfig.prod.json",
"prepublishOnly": "npm run build",
"test": "testscript",
"test-ci": "rm -Rf out && testscript"
},
"dependencies": {
"@rr0/common": "^1.1.3",
"@rr0/lang": "^0.1.12",
"@rr0/time": "^0.8.1",
"glob": "^11.0.0",
"@javarome/fileutil": "^0.3.6"
},
"devDependencies": {
"typescript": "5.6.2",
"@types/node": "^22.7.4",
"tsx": "4.17.0",
"@javarome/testscript": "^0.11.2"
},
"keywords": [
"data",
"rr0"
],
"publishConfig": {
"access": "public"
}
}