forked from fenying/ts-alias-loader.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "ts-alias-loader",
"version": "0.1.4",
"description": "A simple loader for TypeScript module alias on Node.js.",
"main": "lib/index.js",
"scripts": {
"prepublishOnly": "npm run rebuild",
"build": "tsc -v && tsc -p .",
"build-watch": "tsc -v && tsc -w -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"clean": "rm -rf lib examples",
"lint": "eslint --ext ts src",
"typecheck": "tsc -p . --noEmit",
"prepare": "husky && rm -rf node_modules/test-2 && cp -r test/test-2 node_modules/"
},
"keywords": [
"typescript",
"paths",
"mapping",
"alias",
"loader"
],
"author": "Angus.Fenying <[email protected]> (https://fenying.net)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/fenying/ts-alias-loader.js.git"
},
"bugs": {
"url": "https://github.com/fenying/ts-alias-loader.js/issues"
},
"homepage": "https://github.com/fenying/ts-alias-loader.js#readme",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@litert/eslint-plugin-rules": "^0.1.7",
"@types/node": "^20.12.7",
"husky": "^9.0.11",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=10.0.0"
}
}