-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "compas",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint . --fix --cache --cache-location .cache/eslint/",
"lint:ci": "eslint .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"engines": {
"node": ">=24"
},
"devDependencies": {
"@lightbase/eslint-config": "4.3.2",
"@types/lodash": "*",
"@types/node": "25.6.0",
"@types/react": "*",
"@tanstack/react-query": "5.100.9",
"axios": "1.16.0",
"lodash": "~4.18.1",
"meriyah": "7.1.0",
"react": "*",
"typescript": "6.0.3",
"vitepress": "1.6.4"
},
"author": {
"name": "Dirk de Visser",
"email": "npm@dirkdevisser.nl",
"url": "https://dirkdevisser.com"
},
"contributors": [
{
"name": "Daniël Hansen",
"email": "hi@danielhansen.nl"
}
],
"homepage": "https://compasjs.com",
"repository": {
"type": "git",
"url": "git+https://github.com/compasjs/compas.git"
},
"workspaces": ["packages/*"]
}