generated from JoshuaKGoldberg/create-typescript-app
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 776 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 776 Bytes
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": "@flint.fyi/plugin-node",
"version": "0.1.1",
"description": "[Experimental] A Flint plugin for Node.js code.",
"repository": {
"type": "git",
"url": "git+https://github.com/flint-fyi/flint.git",
"directory": "packages/plugin-node"
},
"license": "MIT",
"author": {
"name": "JoshuaKGoldberg",
"email": "npm@joshuakgoldberg.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib/",
"!lib/**/*.map"
],
"dependencies": {
"@flint.fyi/core": "workspace:",
"@flint.fyi/ts": "workspace:",
"typescript": "^5.9.3"
},
"devDependencies": {
"@flint.fyi/rule-tester": "workspace:",
"vitest": "4.0.15"
},
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
}
}