-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 KB
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
{
"name": "@leanup/kolibri-solid",
"version": "1.0.5",
"license": "EUPL-1.2",
"homepage": "https://github.com/leanupjs/kolibri#readme",
"repository": "https://github.com/leanupjs/kolibri",
"bugs": {
"url": "https://github.com/leanupjs/kolibri/issues",
"email": "github@martinoppitz.com"
},
"contributors": [
{
"name": "Martin Oppitz",
"email": "github@martinoppitz.com"
}
],
"browser": true,
"description": "Das Solid-Modul ist der Framework-Adapter für die Komponenten-Bibliothek.",
"sideEffects": false,
"scripts": {
"clean": "lerna exec --stream -- git clean -f -d -X && git clean -f -d -X",
"build:cjs": "tsc -m commonjs --outDir cjs",
"build:clean": "rimraf cjs esm types umd",
"build:esm": "tsc -m esnext --outDir esm",
"build:tsc": "tsc -p .",
"build:types": "tsc -d --outDir types && rimraf types/*.js types/*.map types/**/*.js types/**/*.map",
"build:umd": "tsc -m umd --outDir umd",
"build": "npm run build:clean && npm run build:cjs && npm run build:esm && npm run build:types && npm run build:umd",
"prepack": "npm run build",
":install": "pnpm i && pnpm update",
":publish": "npm run :install && npm publish || true",
":republish": "npm run :unpublish && npm run :publish",
":unpublish": "npm unpublish -f --registry=http://localhost:4873"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "types/index.d.ts",
"exports": {
"require": "./cjs/index.js",
"import": "./esm/index.js"
},
"devDependencies": {
"@public-ui/components": "1.1.11-rc.2",
"@leanup/kolibri-components": "1.0.5",
"@leanup/form": "1.3.39",
"@types/minimatch": "5.1.2",
"@types/minimist": "1.2.2",
"@types/node": "18.14.6",
"@types/normalize-package-data": "2.4.1",
"rimraf": "3.0.2",
"solid-js": "1.6.2",
"typescript": "4.9.3"
},
"peerDependencies": {
"@leanup/kolibri-components": "1.0.5",
"solid-js": ">=1.2.0"
},
"files": [
"cjs",
"esm",
"types",
"umd"
]
}