-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.01 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": "@internxt/node-win",
"version": "1.0.6",
"description": "Drive desktop node addon",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"author": "Internxt <hello@internxt.com>",
"license": "MIT",
"gypfile": true,
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/node-win.git"
},
"scripts": {
"========== Testing ==========": "",
"test": "vitest",
"test:once": "npm run test -- --run",
"test:one": "npm run test -- related x",
"========== Build ==========": "",
"clean": "node-gyp clean",
"build:gyp": "node-gyp configure build",
"build:ts": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"config:gyp": "python gyp.config.py",
"build": "python gyp.config.py && node-gyp clean && node-gyp configure build && npm run build:ts",
"========== Linter ==========": "",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"type-check": "tsc",
"========== Examples ==========": "",
"prod:register": "node ./dist/examples/register.js",
"register": "nodemon",
"populate": "ts-node -r tsconfig-paths/register ./examples/populate.ts",
"get-state": "ts-node -r tsconfig-paths/register ./examples/get-state.ts",
"unregister": "ts-node -r tsconfig-paths/register ./examples/unregister.ts",
"disconnect": "ts-node -r tsconfig-paths/register ./examples/disconnect.ts"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/lodash.chunk": "^4.2.9",
"@types/node": "^20.5.0",
"@types/yargs": "^17.0.32",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.1.6",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.3",
"vitest-mock-extended": "^2.0.2"
},
"dependencies": {
"chokidar": "^3.6.0",
"lodash.chunk": "^4.2.0",
"tsconfig-paths": "^4.2.0",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"yargs": "^17.7.2",
"zod": "^3.24.1"
}
}