-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.38 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
{
"name": "@typescriptprime/parsing",
"type": "module",
"version": "0.0.0",
"description": "Lightweight helper utilities for parsing CLI-style arguments, implemented in TypeScript",
"keywords": [
"cli",
"helper",
"utilities",
"ci"
],
"scripts": {
"build": "tsc -p sources/tsconfig.json",
"lint": "tsc --noEmit && eslint",
"test": "ava"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"license": "Apache-2.0",
"ava": {
"files": [
"tests/**/*.test.ts"
],
"nodeArguments": [
"--import=tsx"
],
"workerThreads": false,
"typescript": {
"rewritePaths": {
"@/": "./sources/"
},
"compile": false
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/TypescriptPrime/parsing.git"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@types/node": "^24.12.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"ava": "^7.0.0",
"eslint": "^10.2.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"dependencies": {
"es-toolkit": "^1.45.1"
}
}