-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "@aidc-toolkit/gs1",
"version": "0.9.5",
"description": "GS1 AIDC Toolkit",
"type": "module",
"main": "dist/index.js",
"homepage": "https://github.com/aidc-toolkit",
"repository": {
"type": "git",
"url": "git+https://github.com/aidc-toolkit/gs1.git"
},
"bugs": {
"url": "https://github.com/aidc-toolkit/gs1/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Kevin Dean",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/kdean"
},
"scripts": {
"eslint": "eslint .",
"build": "tsup src/index.ts --clean --format cjs,esm --dts",
"build-doc": "npm run build && tsc src/index.ts --outDir dist --target esnext --moduleResolution nodenext --module nodenext --emitDeclarationOnly --declaration --declarationMap",
"test": "vitest run"
},
"devDependencies": {
"@aidc-toolkit/dev": "^0.9.5",
"eslint": "^9.15.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
},
"dependencies": {
"@aidc-toolkit/core": "^0.9.5",
"@aidc-toolkit/utility": "^0.9.5",
"ts-mixer": "^6.0.4"
}
}