-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.78 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
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
73
74
75
{
"name": "@knighted/reparse",
"version": "2.1.0",
"description": "Multiple swc parsings of the same file with correct spans.",
"type": "module",
"main": "dist/reparse.js",
"exports": {
".": {
"import": {
"types": "./dist/reparse.d.ts",
"default": "./dist/reparse.js"
},
"require": {
"types": "./dist/cjs/reparse.d.cts",
"default": "./dist/cjs/reparse.cjs"
},
"default": "./dist/reparse.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20.11.0"
},
"engineStrict": true,
"scripts": {
"prettier": "prettier -w .",
"lint": "eslint --ignore-pattern dist .",
"build": "duel",
"postbuild": "tsx postbuild.ts",
"pretest": "npm run build",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcov tsx --test --test-reporter=spec test/*.ts",
"prepack": "npm run build"
},
"keywords": [
"swc",
"parse",
"parseSync",
"multiple",
"reruns",
"correct spans"
],
"files": [
"dist"
],
"author": "KCM <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/knightedcodemonkey/reparse.git"
},
"bugs": {
"url": "https://github.com/knightedcodemonkey/reparse/issues"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@knighted/duel": "^2.0.0-rc.0",
"@types/node": "^20.13.0",
"c8": "^10.1.2",
"eslint": "^9.4.0",
"eslint-plugin-n": "^17.7.0",
"prettier": "^3.2.5",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.30"
},
"peerDependencies": {
"@swc/core": ">=1.5.24"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 119,
"semi": false,
"singleQuote": true
}
}