-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.19 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 5.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "cmake-ts",
"version": "1.0.2",
"description": "cmake-js rewrite in typescript to support advanced build configurations",
"main": "build/lib.js",
"module": "build/lib.mjs",
"exports": {
".": {
"require": "./build/lib.js",
"import": "./build/lib.mjs"
},
"./*": {
"require": "./build/*.js",
"import": "./build/*.mjs"
},
"./*.js": {
"require": "./build/*.js",
"import": "./build/*.mjs"
},
"./*.mjs": {
"require": "./build/*.js",
"import": "./build/*.mjs"
},
"./build/*": {
"require": "./build/*.js",
"import": "./build/*.mjs"
},
"./build/*.js": {
"require": "./build/*.js",
"import": "./build/*.mjs"
},
"./build/*.mjs": {
"require": "./build/*.js",
"import": "./build/*.mjs"
}
},
"bin": "build/main.js",
"scripts": {
"clean": "shx rm -rf build ./node_modules/zeromq/build ./node_modules/zeromq/staging",
"lint.eslint": "eslint . --cache --cache-location ./.cache/.eslintcache \"./**/*.{js,ts,mjs,mts,cjs,cts,json,yaml,yml}\" --fix",
"lint.biome": "biome check --write --unsafe .",
"lint": "turbo run lint.eslint lint.biome format.prettier format.biome",
"test.lint.eslint": "eslint . --cache --cache-location ./.cache/.eslintcache \"./**/*.{js,ts,mjs,mts,cjs,cts,json,yaml,yml}\"",
"test.lint.biome": "biome check .",
"test.lint": "turbo run test.lint.eslint test.lint.biome test.format.prettier test.format.biome",
"format.prettier": "prettier -l --write --cache --cache-location ./.cache/.prettiercache \"./**/*.{yaml,yml,md}\"",
"format.biome": "biome format --write .",
"format": "turbo run format.prettier format.biome",
"test.format.prettier": "prettier --check --cache --cache-location ./.cache/.prettiercache \"./**/*.{yaml,yml,md}\"",
"test.format.biome": "biome format .",
"test.format": "turbo run test.format.prettier test.format.biome",
"dev.tsc": "tsc -w --pretty",
"dev.tsc.lib": "tsc -w --pretty --project ./src/tsconfig.json",
"dev.legacy-main": "vite build --watch --mode legacy-main",
"dev.modern-main": "vite build --watch --mode modern-main",
"dev": "cross-env NODE_ENV=development run-p dev.legacy-main dev.modern-main dev.tsc dev.tsc.lib",
"build.tsc": "tsc --pretty",
"build.tsc.lib": "tsc --pretty --project ./src/tsconfig.json && shx cp -r ./src/*.d.mts ./build/",
"build.legacy-main": "vite build --mode legacy-main",
"build.modern-main": "vite build --mode modern-main",
"build.legacy-library": "vite build --mode legacy-library",
"build.modern-library": "vite build --mode modern-library",
"build.modern-loader": "vite build --mode modern-loader",
"build.legacy-loader": "vite build --mode legacy-loader",
"build": "turbo run build.tsc build.tsc.lib build.legacy-main build.modern-main build.legacy-library build.modern-library build.modern-loader build.legacy-loader",
"test": "cross-env NODE_OPTIONS=--enable-source-maps pnpx vitest --watch false",
"coverage": "cross-env NODE_OPTIONS=--enable-source-maps pnpx vitest --coverage --watch false"
},
"files": ["build/**/*", "src/**/*", "./*.mts", "./tsconfig.json"],
"repository": {
"type": "git",
"url": "git+https://github.com/EmbeddedEnterprises/cmake-ts.git"
},
"keywords": ["cmake", "nan", "node", "native", "addon", "build", "cmake-js"],
"author": "Amin Yahyaabadi <aminyahyaabadi74@gmail.com>",
"contributors": ["Amin Yahyaabadi <aminyahyaabadi74@gmail.com>", "Martin Koppehel <martin@mko.dev>"],
"license": "MIT",
"bugs": {
"url": "https://github.com/EmbeddedEnterprises/cmake-ts/issues"
},
"homepage": "https://github.com/EmbeddedEnterprises/cmake-ts#readme",
"devDependencies": {
"@babel/core": "7.26.10",
"@types/babel__core": "7.20.5",
"@types/fs-extra": "11.0.4",
"@types/node": "22.14.0",
"@types/resolve": "1.20.6",
"@types/semver": "7.7.0",
"@types/tar": "6.1.13",
"@types/url-join": "4.0.3",
"@types/which": "3.0.4",
"@types/escape-quotes": "1.0.0",
"@upleveled/babel-plugin-remove-node-prefix": "1.0.5",
"@types/memoizee": "0.4.7",
"turbo": "2.5.0",
"cross-env": "7.0.3",
"eslint": "^8",
"eslint-config-atomic": "1.22.1",
"npm-run-all2": "7.0.2",
"rollup-plugin-visualizer": "5.14.0",
"shx": "0.4.0",
"typescript": "5.8.3",
"vite": "6.2.7",
"vitest": "3.1.1",
"vite-plugin-babel": "1.3.0",
"@vitest/coverage-v8": "3.1.1",
"@vitest/ui": "3.1.1",
"@biomejs/biome": "1.9.4",
"prettier": "3.5.3",
"prettier-config-atomic": "4.0.0",
"execa": "9.5.2",
"ci-info": "4.2.0",
"fast-glob": "3.3.3",
"fs-extra": "^10",
"resolve": "^1.22.10",
"semver": "^7.7.1",
"tar": "^7",
"url-join": "^4.0.1",
"which": "^2",
"node-downloader-helper": "^2.1.9",
"escape-quotes": "^1.0.2",
"commander": "^13.1.0",
"msvc-dev-cmd": "github:aminya/msvc-dev-cmd#c01f519bd995460228ed3dec4df51df92dc290fd",
"memoizee": "0.4.17"
},
"packageManager": "pnpm@10.8.0",
"$schema": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/package.json",
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "core-js", "esbuild"]
}
}