-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.67 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
{
"name": "@activewidgets/options",
"version": "3.5.0",
"description": "ActiveWidgets grid configuration options",
"author": "ActiveWidgets SARL",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run lint && node build.js && npm run types",
"lint": "eslint src/**/*.js -f unix",
"prepack": "npm run build",
"test": "npm run build && vitest run",
"types": "tsc src/index.js --allowJs --declaration --declarationMap --emitDeclarationOnly --outDir dist/types"
},
"dependencies": {
"@activewidgets/experimental": "3.5.0"
},
"devDependencies": {
"@activewidgets/datagrid": "3.5.0",
"@activewidgets/frameworks": "3.5.0",
"@activewidgets/testing": "0.1.3",
"@testing-library/preact": "^3",
"eslint": "^8",
"preact": "10.4.4",
"typescript": "^5",
"vite": "^4",
"vitest": "latest"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"globals": {
"Promise": true
},
"rules": {
"no-prototype-builtins": "off"
},
"env": {
"browser": true
}
},
"eslintIgnore": [
"dist",
"src/**/unit.js"
],
"postcss": {},
"repository": {
"type": "git",
"url": "https://github.com/activewidgets/options.git"
},
"keywords": [
"react"
],
"bugs": {
"url": "https://github.com/activewidgets/options/issues"
},
"homepage": "https://github.com/activewidgets/options#readme"
}