-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 819 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 819 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
{
"name": "@web-platform-dx/developer-signals",
"private": true,
"description": "Organizing developer signals around features",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/web-platform-dx/developer-signals.git"
},
"type": "module",
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"test": "npm run test:format",
"test:format": "prettier --check .",
"format": "npx prettier --write .",
"update-issues": "tsx scripts/update-issues.ts"
},
"devDependencies": {
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.0",
"@types/node": "^25.0.0",
"dedent": "^1.7.0",
"markdown-escape": "^2.0.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"web-features": "^3.10.0"
}
}