-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "stimulus-parser",
"version": "0.3.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",
"test:ui": "yarn test --ui"
},
"dependencies": {
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@typescript-eslint/typescript-estree": "^8.46.2",
"@typescript-eslint/visitor-keys": "^8.46.2",
"acorn-walk": "^8.3.4",
"astring": "^1.9.0",
"fs": "^0.0.1-security",
"glob": "^13.0.0"
},
"devDependencies": {
"@hotwired/stimulus": "^3.2.2",
"@types/node": "^25.0.9",
"@typescript-eslint/types": "^8.46.2",
"@vitest/ui": "^4.0.3",
"dedent": "^1.7.0",
"minimatch": "^10.0.3",
"path": "^0.12.7",
"rimraf": "^6.0.1",
"source-map": "^0.7.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
}
}