-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "svelte-persistent-store",
"version": "0.1.6",
"description": "Persist your svelte store in localStorage or sessionStorage",
"author": "Andrea Salamone",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andsala/svelte-persistent-store.git"
},
"homepage": "https://github.com/andsala/svelte-persistent-store",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": "./dist/index.js",
"./": "./dist/"
},
"types": "dist/**",
"scripts": {
"build": "tsup src/local.ts src/session.ts src/index.ts --external svelte --format esm,cjs --inlineDynamicImports --dts",
"dev": "npm run build -- --watch",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x '*.test.ts' npm run test"
},
"keywords": [
"svelte",
"store",
"persistent"
],
"peerDependencies": {
"svelte": "^3.9.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"rollup": "^2.26.9",
"svelte": "^3.24.1",
"ts-node": "^9.0.0",
"tsup": "^3.11.0",
"typescript": "^4.0.2"
},
"files": [
"dist/**"
],
"dependencies": {}
}