-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.3 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": "@9am/ctrl-panel",
"version": "1.3.1",
"description": "A simple control panel.",
"keywords": [
"ctrl-panel",
"control",
"ctrl",
"input",
"form",
"custom elements",
"web component"
],
"author": [
{
"name": "9am",
"email": "[email protected]",
"url": "https://9am.github.io/"
}
],
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/9am/ctrl-panel"
},
"homepage": "https://9am.github.io/ctrl-panel/",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"main": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"default": "./dist/index.es.js"
},
"./theme.css": "./dist/theme.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"prerelease": "npm run build",
"release": "changeset publish"
},
"devDependencies": {
"@9am/tsconfig": "^1.0.0",
"@changesets/cli": "^2.25.2",
"postcss": "^8.4.16",
"postcss-nesting": "^10.2.0",
"prettier": "^2.7.1",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-plugin-dts": "^1.5.0"
}
}