-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.36 KB
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
{
"name": "gliner",
"version": "0.0.19",
"description": "This is a GLiNER inference engine",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./node": {
"require": "./dist/node/index.cjs",
"import": "./dist/node/index.mjs"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Ingvarstep/GLiNER.js"
},
"keywords": [
"GLiNER",
"inference",
"engine"
],
"author": "Your Name",
"license": "MIT",
"files": [
"package.json",
"src",
"dist",
"README.md"
],
"scripts": {
"build": "tsup --format cjs,esm --dts",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "prettier --check src/**/*.ts",
"lint:fix": "prettier --write src/**/*.ts"
},
"peerDependencies": {
"onnxruntime-node": "1.19.2"
},
"dependencies": {
"@xenova/transformers": "2.17.2",
"onnxruntime-common": "1.19.2",
"onnxruntime-web": "1.19.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
},
"private": false
}