-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "tiktoken-node",
"version": "0.0.7",
"types": "index.d.ts",
"main": "index.cjs",
"napi": {
"name": "tiktoken-node",
"triples": {
"additional": [
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin"
]
}
},
"exports": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"files": [
"dist/*",
"*.d.ts",
"index.mjs",
"index.cjs",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "2.18.0",
"typescript": "5.3.3"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build:debug": "napi build --platform --no-dts-header --js false --dts ../index.d.ts ./dist",
"build": "npm run build:debug -- --release",
"format": "cargo fmt"
},
"repository": {
"type": "git",
"url": "https://github.com/ceifa/tiktoken-node"
}
}