-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "stimulus-parser",
"version": "0.2.2",
"description": "Statically analyze Stimulus controllers",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Marco Roth",
"license": "MIT",
"repository": "https://github.com/marcoroth/stimulus-parser",
"sideEffects": false,
"scripts": {
"prebuild": "yarn clean",
"build": "tsc -b",
"watch": "tsc -b -w",
"dev": "yarn watch",
"clean": "rimraf dist",
"prerelease": "yarn build",
"install:fixtures": "node scripts/setupFixtures.mjs",
"pretest": "yarn install:fixtures",
"test": "vitest"
},
"dependencies": {
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@typescript-eslint/typescript-estree": "^7.16.0",
"@typescript-eslint/visitor-keys": "^7.16.0",
"acorn-walk": "^8.3.1",
"astring": "^1.8.6",
"fs": "^0.0.1-security",
"glob": "^10.3.10"
},
"devDependencies": {
"@hotwired/stimulus": "^3.2.2",
"@types/node": "^20.10.5",
"dedent": "^1.5.1",
"minimatch": "^9.0.3",
"path": "^0.12.7",
"rimraf": "^5.0.5",
"source-map": "^0.7.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.5.3",
"vitest": "^2.0.2"
}
}