This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "svelte-commons",
"version": "0.1.2",
"description": "Provides common utilities for working with Svelte",
"main": "lib/index.js",
"module": "dist/esm/index.js",
"typings": "types/index.d.ts",
"keywords": [
"library",
"svelte",
"svelte-action",
"svelte-store",
"typescript"
],
"files": [
"dist",
"lib",
"types"
],
"author": "novacbn",
"repository": {
"type": "git",
"url": "https://github.com/novacbn/svelte-commons"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build:lib": "npm run build:lib:cjs && npm run build:lib:esm && npm run build:lib:umd",
"build:lib:cjs": "tsc --module commonjs --outDir ./lib",
"build:lib:esm": "tsc --module es6 --outDir ./dist/esm",
"build:lib:umd": "parcel build ./src/index.ts --global SvelteCommons --out-file ./dist/svelte-commons.umd.js",
"build:typedoc": "typedoc --out ./dist/docs --exclude '**/index.ts' --stripInternal --target es6 --theme minimal --mode modules src",
"prebuild:clean": "rimraf ./dist"
},
"dependencies": {
"svelte": "^3.17.1",
"tv4": "^1.3.0"
},
"devDependencies": {
"@types/tv4": "^1.2.29",
"parcel-bundler": "^1.12.4",
"prettier": "^1.14.3",
"rimraf": "^3.0.0",
"tslib": "^1.10.0",
"typedoc": "^0.15.0",
"typescript": "^3.7.4"
}
}