-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 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
{
"name": "rust-ts",
"version": "6.0.3",
"description": "Rusty TypeScript",
"author": "Andrew X. Shah <drewshah0@gmail.com> (https://github.com/drewxs)",
"keywords": [
"typescript",
"rust"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drewxs/rust-ts.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/*"
],
"engines": {
"node": ">=18.x.x"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"doc": "rimraf docs && typedoc src/**/*.ts",
"serve": "npm run doc && http-server docs",
"lint": "eslint src --no-ignore --max-warnings=0 --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "npx simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^8.57.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/jest": "^29.5.12",
"@types/node": "20.12.12",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"globals": "^15.3.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"semantic-release": "^23.1.1",
"simple-git-hooks": "^2.11.1",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "5.4.5",
"typescript-eslint": "^7.5.0",
"webpack": "^5.91.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run build && npm run test",
"commit-msg": "npx --no -- commitlint --edit"
}
}