-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.21 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.21 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
{
"name": "genffi",
"description": "",
"version": "0.9.0",
"author": "Andreas Zahnen",
"license": "MIT",
"homepage": "https://github.com/azahnen/ts2ffi",
"type": "module",
"private": true,
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"engines": {
"node": "^23.4.0",
"npm": "^10.9.2"
},
"volta": {
"node": "23.4.0",
"npm": "10.9.2"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build2": "tsc -p ./tsconfig.build.json",
"build": "node --disable-warning=ExperimentalWarning --experimental-strip-types ./scripts/build.ts",
"clean": "rimraf build coverage",
"type:check": "tsc --noEmit",
"lint": "biome check . --write --unsafe",
"lint:check": "biome ci .",
"test": "jest --coverage",
"snap": "jest --updateSnapshot",
"test2": "node --disable-warning=ExperimentalWarning --experimental-strip-types ./scripts/test.ts test",
"test:watch": "node --disable-warning=ExperimentalWarning --experimental-strip-types ./scripts/test.ts test:watch",
"test:coverage": "node --disable-warning=ExperimentalWarning --experimental-strip-types ./scripts/test.ts test:coverage",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@jest/globals": "^29.7.0",
"@microsoft/api-extractor": "^7.49.1",
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.5",
"@types/prompts": "^2.4.9",
"c8": "^10.1.3",
"cspell": "^8.17.1",
"esbuild": "^0.24.2",
"is-main": "^0.4.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"tsx": "4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"ajv": "^8.17.1",
"typescript-json-schema": "^0.65.1"
}
}