-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 953 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
{
"name": "@rr0/common",
"type": "module",
"author": "Jérôme Beau <[email protected]> (https://rr0.org)",
"version": "1.1.3",
"description": "Common and utility classes",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16.2.0"
},
"license": "MIT",
"homepage": "https://github.com/RR0/common#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/common.git"
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./node_modules && rm package-lock.json",
"prebuild": "npm install",
"build": "tsc",
"test": "testscript",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"@javarome/testscript": "^0.13.1",
"typescript": "5.6.3",
"@types/node": "^22.8.1"
},
"keywords": [
"common",
"util",
"rr0"
],
"publishConfig": {
"access": "public"
}
}