-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.04 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
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
{
"name": "type-crafter",
"version": "0.8.2",
"description": "A tool to generate types from a yaml schema for any language",
"main": "./dist/index.js",
"type": "module",
"bin": {
"type-crafter": "./dist/index.js"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"scripts/postinstall.js"
],
"scripts": {
"dev": "tsc --watch",
"format:all": "npx prettier --write .",
"lint:all": "eslint . --ext .ts",
"clean:output": "rm -rf dist",
"build": "npm run clean:output && rollup --config rollup.config.js",
"publish": "node scripts/publish.js",
"changeset:version": "changeset version && git add --all"
},
"keywords": [
"type-crafter",
"types",
"crafter",
"generation",
"generator",
"typescript"
],
"author": "Sahil Sinha",
"license": "ISC",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/sinha-sahil/type-crafter.git"
},
"bugs": {
"url": "https://github.com/sinha-sahil/type-crafter/issues"
},
"homepage": "https://github.com/sinha-sahil/type-crafter#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"commander": "^11.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"handlebars": "^4.7.8",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"rollup": "^4.5.1",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.6.2",
"type-decoder": "^2.0.1",
"typescript": "^5.2.2",
"yaml": "^2.3.2"
}
}