-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.22 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
{
"name": "@gliff-ai/audit",
"version": "1.0.0",
"description": "gliff.ai AUDIT",
"repository": "git://github.com/gliff-ai/audit.git",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx vite build -c vite.config.lib.ts && tsc --emitDeclarationOnly --outDir dist && tsc-alias -p tsconfig.json && npm run build:patch",
"watch": "npx --no-install vite build -c vite.config.lib.ts --watch",
"format": "npx --no-install prettier --write src",
"prettier": "npx --no-install prettier -c src",
"lint": "npm run lint:ts && npm run prettier",
"lint:ts": "npx --no-install eslint src",
"serve": "vite",
"build:example": "vite build",
"test": "jest --coverage --passWithNoTests",
"build:patch": "sed -i 's/const generateClassName$1 = createGenerateClassName();/const generateClassName$1 = createGenerateClassName({seed:\"\",disableGlobal:true,productionPrefix:\"jss-audit-\"});/g' dist/index.es.js"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@gliff-ai/annotate": "^6.1.0",
"@gliff-ai/eslint-config": "^0.2.4",
"@gliff-ai/style": "^16.3.1",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.2",
"@mui/styles": "^5.9.2",
"@mui/x-data-grid": "^5.15.0",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"prettier": "2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tsc-alias": "^1.7.0",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vite-aliases": "^0.9.2",
"vite-plugin-checker": "^0.3.4"
},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@gliff-ai/annotate": "^6.0.0",
"@gliff-ai/style": "^16.2.1",
"@mui/icons-material": "^5.8.2",
"@mui/material": "^5.8.2",
"@mui/styles": "^5.8.0",
"@mui/x-data-grid": "^5.12.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"csstype": "^3.1.0"
}
}