-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "typing-json",
"version": "0.1.11",
"description": "Convert JSON data to TypeScript types",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"bin": "./bin/typing-json.cjs",
"files": [
"lib/"
],
"scripts": {
"clean": "rm -rf node_modules && rm -rf .pnpm-store && rm -rf lib",
"tsc": "rm -rf lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublishOnly": "pnpm run tsc",
"test": "jest",
"docs": "echo 'skip for now'",
"build": "pnpm run tsc && pnpm run docs && npx changelogen --output --bump"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduhds/typing-json.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eduhds/typing-json/issues"
},
"homepage": "https://github.com/eduhds/typing-json#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"changelogen": "^0.5.5",
"jest": "^29.7.0",
"lefthook": "^1.10.10",
"typedoc": "^0.25.6",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@10.3.0",
"dependencies": {
"@prettier/sync": "^0.5.2",
"prettier": "^3.5.1"
}
}