-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 989 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
{
"name": "dropbox-api-v2-explorer",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
"build": "node scripts/build.js",
"watch": "node scripts/build.js --watch",
"lint": "eslint src test",
"lint-fix": "eslint --fix src test",
"typecheck": "tsc --noEmit",
"test": "npm run test:unit",
"test:unit": "node --import tsx --test test/unit/*.test.ts",
"coverage:unit": "c8 --reporter=lcov --reporter=text npm run test:unit",
"report": "c8 report --reporter=lcov --reporter=text"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"c8": "^12.0.0",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
},
"dependencies": {
"highlight.js": "^11.11.1",
"react": "^19.2.7",
"react-dom": "^19.2.7"
}
}