-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "@c4tastic/paperthin",
"version": "1.1.1",
"description": "a thin react wrapper for web components",
"repository": "[email protected]:c4tastic/paperthin.git",
"contributors": [
"Lucien Bénié <[email protected]>",
"Mathieu Lavoie <[email protected]>"
],
"license": "MIT",
"types": "./dist/types/index.d.ts",
"main": "./dist/paperthin.umd.js",
"module": "./dist/paperthin.es.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/paperthin.mjs",
"require": "./dist/paperthin.umd.js"
}
},
"scripts": {
"dev": "vite --config ./example/vite.example.config.ts",
"build": "vite build",
"format": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@m4thieulavoie/linting": "0.2.12",
"@rollup/plugin-typescript": "8.3.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/eslint": "8.4.5",
"@types/node": "16.11.45",
"@types/react": "18.0.15",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"@vitejs/plugin-react-refresh": "1.3.6",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-functional": "4.2.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-inclusive-language": "2.2.0",
"eslint-plugin-no-explicit-type-exports": "0.12.1",
"eslint-plugin-prettier": "4.2.1",
"lit-element": "3.2.2",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "2.77.0",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "3.0.2"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0"
},
"publishConfig": {
"access": "public"
}
}