-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@teodevgroup/teo",
"version": "0.3.7",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "teo",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"universal-apple-darwin",
"riscv64gc-unknown-linux-gnu"
]
}
},
"bin": "teo.js",
"repository": {
"type": "git",
"url": "https://github.com/teodevgroup/teo-nodejs"
},
"license": "Apache-2.0",
"dependencies": {
"@teodevgroup/teo-nodejs-helpers": "^0.3.5-alpha.1",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@napi-rs/cli": "^2.18.4",
"@types/node": "^22.8.7",
"ava": "^6.2.0",
"form-data-encoder": "^4.0.2",
"glob": "^10.4.5",
"tsimp": "^2.0.11",
"typescript": "^5.5.4"
},
"ava": {
"typescript": {
"extensions": [
"ts",
"tsx"
],
"rewritePaths": {
"tests/": "tests_build/"
},
"compile": "tsc"
},
"files": [
"tests/**/*.spec.ts"
]
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --pipe \"node ./scripts/fixFiles.js\"",
"build:debug": "napi build --platform --pipe \"node ./scripts/fixFiles.js\"",
"postbuild": "tsc ./lib/test.ts --declaration --outDir .",
"postbuild:debug": "tsc ./lib/test.ts --declaration --outDir .",
"prepublishOnly": "napi prepublish -t npm",
"pretest": "node ./scripts/copyTestSchemas.js",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
}
}