-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 916 Bytes
/
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
{
"name": "karakum",
"version": "1.0.0-alpha.50",
"description": "Converter of TypeScript declaration files to Kotlin declarations",
"keywords": [
"kotlin",
"typescript"
],
"license": "Apache-2.0",
"exports": "./build/index.js",
"bin": "./build/cli.js",
"type": "module",
"files": [
"LICENSE",
"README.md",
"build/"
],
"scripts": {
"clean": "rimraf build",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build",
"test": "node --loader ts-node/esm test/run.ts",
"schema": "node --loader ts-node/esm schema/generate.ts"
},
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript-json-schema": "^0.65.1"
},
"peerDependencies": {
"typescript": "^5.7.2"
}
}