-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.86 KB
/
package.json
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
93
94
95
96
97
98
99
{
"name": "@forman2/extendit",
"version": "0.2.0",
"type": "module",
"displayName": "ExtendIt.js",
"description": "A framework supporting development of extensible and scalable JavaScript applications",
"readme": "README.md",
"author": "Norman Fomferra (https://github.com/forman)",
"repository": "https://github.com/forman/extendit",
"homepage": "https://forman.github.io/extendit/",
"bugs": "https://github.com/forman/extendit/issues",
"license": "MIT",
"keywords": [
"dependency inversion",
"extension management",
"plugin management",
"react",
"ui"
],
"files": [
"dist",
"logo.png"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/core/index.d.ts",
"require": "./dist/core/index.cjs",
"module": "./dist/core/index.js",
"default": "./dist/core/index.js"
},
"./contrib": {
"types": "./dist/contrib/index.d.ts",
"require": "./dist/contrib/index.cjs",
"module": "./dist/contrib/index.js",
"default": "./dist/contrib/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"require": "./dist/react/index.cjs",
"module": "./dist/react/index.js",
"default": "./dist/react/index.js"
},
"./util": {
"types": "./dist/util/index.d.ts",
"require": "./dist/util/index.cjs",
"module": "./dist/util/index.js",
"default": "./dist/util/index.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"typedoc": "typedoc src/framework/core src/framework/react src/framework/contrib src/framework/util --excludePrivate --out docs & copyfiles logo.png docs/"
},
"dependencies": {
"ajv": "^8.12.0",
"memoize-one": "^6.0.0",
"zustand": "^4.4.0"
},
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/node": "^20.11.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jsdom": "^24.0.0",
"prettier": "3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"vite": "latest",
"vite-plugin-dts": "latest",
"vitest": "latest"
}
}