-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@e18e/web-features-codemods",
"version": "0.0.1",
"type": "module",
"description": "A collection of codemods for web features",
"main": "lib/main.js",
"files": [
"lib",
"!lib/**/*.test.js",
"!lib/**/*.test.d.ts"
],
"scripts": {
"build": "tsgo",
"test": "vitest run",
"format": "prettier --write src",
"lint": "npm run lint:format",
"lint:format": "prettier --check src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e18e/web-features-codemods.git"
},
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/e18e/web-features-codemods/issues"
},
"homepage": "https://github.com/e18e/web-features-codemods#readme",
"dependencies": {
"@ast-grep/napi": "^0.40.2"
},
"devDependencies": {
"@types/node": "^25.0.2",
"@typescript/native-preview": "^7.0.0-dev.20251215.1",
"@vitest/coverage-v8": "^4.0.15",
"prettier": "^3.7.4",
"vitest": "^4.0.13"
}
}