-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "@digichanges/solid-components",
"version": "0.7.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/digichanges/solid-components.git"
},
"module": "./dist/src/index.js",
"types": "./dist/src/types/index.d.ts",
"exports": {
".": {
"default": "./dist/src/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0",
"yarn": ">=1.22.5"
},
"keywords": [
"solid",
"solidjs",
"components",
"multiselect"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext ts,tsx --max-warnings 0 --cache src",
"lint:fix": "eslint src --fix",
"prebuild": "rimraf dist",
"watch:js": "rollup -c --watch",
"ts:check": "tsc -p tsconfig.json --noEmit",
"ci": "npm run ts:check && npm run lint"
},
"author": "DigiChanges <https://www.linkedin.com/company/digichanges>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.2",
"babel-preset-solid": "^1.2.2",
"eslint": "^8.0.1",
"eslint-plugin-solid": "^0.1.2",
"postcss": "^8.4.5",
"postcss-preset-env": "^7.2.0",
"postcss-url": "^10.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-modules": "^2.0.2",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-styles": "^3.14.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"solid-js": "^1.1.3"
},
"dependencies": {
"solid-js": "^1.1.3"
}
}