-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 917 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
{
"name": "witnet-radon-js",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"type": "module",
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/src/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "prettier --write '{src,test}/**/*.{t,j}s'",
"lint:check": "prettier --check '{src,test}/**/*.{t,j}s'",
"test": "vitest",
"prepare": "npm run build"
},
"keywords": [
"radon",
"witnet"
],
"author": "Witnet Foundation <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"typescript": "latest",
"vitest": "^1.2.2"
},
"dependencies": {
"@types/node": "^20.11.10",
"json5": "2.2.3",
"prettier": "3.2.4",
"rosetta": "1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-radon-js.git"
}
}