-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.89 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@workday/everywhere",
"version": "0.1.1",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Workday/everywhere"
},
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"default": "./dist/components/index.js"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"default": "./dist/hooks/index.js"
},
"./data": {
"types": "./dist/data/index.d.ts",
"default": "./dist/data/index.js"
},
"./build": {
"types": "./dist/build/index.d.ts",
"default": "./dist/build/index.js"
}
},
"bin": {
"everywhere": "./bin/everywhere.js"
},
"files": [
"dist",
"bin",
"cli/dist",
"cli/package.json",
"cli/oclif.manifest.json"
],
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"dependencies": {
"@oclif/core": "4.10.5",
"chalk": "^5.6.2",
"esbuild": "^0.28",
"jszip": "^3.10.1",
"vite": "^8"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"react": "^19",
"react-dom": "^19",
"ts-node": "^10.9.2",
"typescript": "^6",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
},
"scripts": {
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --check",
"eslint"
],
"*.{md,yaml,yml}": [
"prettier --check"
]
}
}