-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 997 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
41
42
43
44
{
"name": "@rr0/lang",
"type": "module",
"author": "Jérôme Beau <[email protected]> (https://rr0.org)",
"version": "0.1.12",
"description": "Language and translation",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16.2.0"
},
"license": "MIT",
"homepage": "https://github.com/RR0/lang#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RR0/lang.git"
},
"scripts": {
"clean": "rm -Rf dist && rm -Rf node_modules && rm package-lock.json",
"prebuild": "npm install",
"build": "tsc",
"prepublishOnly": "npm run build && npm test",
"test": "testscript"
},
"devDependencies": {
"tsx": "4.19.1",
"@javarome/testscript": "^0.11.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@rr0/common": "^1.1.2"
},
"keywords": [
"language",
"locale",
"grammar",
"translation",
"translator",
"rr0"
],
"publishConfig": {
"access": "public"
}
}