-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.67 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
{
"name": "assembly-ts",
"description": "Korea's national assembly open api mapping",
"version": "0.1.8",
"license": "MIT",
"packageManager": "yarn@4.3.1",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/leginote/assembly-ts.git"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitest/coverage-istanbul": "^2.0.5",
"bumpp": "^10.1.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.7.0",
"hotscript": "^1.0.13",
"prettier": "^3.3.3",
"tsup": "^8.2.3",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"test": "vitest run --coverage --typecheck",
"lint": "eslint ./src --ext .ts ",
"format": "prettier --write .",
"release": "yarn build && bumpp",
"prepack": "yarn build"
},
"changelogithub": {
"types": {
"feat": {
"title": "🚀 Features"
},
"fix": {
"title": "🐞 Bug Fixes"
},
"perf": {
"title": "🏎 Performance"
},
"docs": {
"title": "📝 Documentation"
},
"test": {
"title": "✅ Tests"
},
"ci": {
"title": "🤖 CI"
},
"style": {
"title": "🎨 Styles"
},
"build": {
"title": "📦 Build"
},
"refactor": {
"title": "🔨 Code Refactoring"
}
}
}
}