-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.16 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.16 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
{
"name": "@rxdi/graphql-webcomponent",
"version": "0.0.16",
"description": "Reactive Graphql web-component",
"scripts": {
"start": "npx parcel ./example/index.html --out-dir client",
"build-ui-kit": "npx parcel build ./src/ui-kit/index.ts --experimental-scope-hoisting --out-dir dist/ui-kit --out-file '0.0.15.js'",
"build": "npx parcel build ./src/index.ts --experimental-scope-hoisting --out-dir dist/regular --out-file '0.0.15.js'",
"patch": "npm version patch && npm run pub",
"minor": "npm version minor && npm run pub",
"major": "npm version major && npm run pub",
"pub": "npm publish --update-readme --access public"
},
"author": "Kristiyan Tachev (@Stradivario)",
"browserslist": [
"last 1 chrome versions"
],
"license": "MIT",
"dependencies": {
"@rxdi/core": "^0.7.41",
"@rxdi/lit-html": "^0.7.42",
"@rxdi/ui-kit": "^0.7.49",
"@rhtml/components": "^0.0.12",
"@rhtml/graphql": "^0.0.12",
"@rhtml/hooks": "^0.0.12",
"@rhtml/operators": "^0.0.12",
"router-slot": "^1.4.9"
},
"typings": "./out/index.d.ts",
"module": "./out/index.js",
"devDependencies": {
"typescript": "^3.7.3"
}
}