-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
63
64
65
66
67
68
69
70
71
{
"name": "@figliolia/enhanced-stores",
"version": "1.0.5",
"description": "An enhancer library for svelte stores that supports middleware",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"src/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cli": "yarn build && node dist/stealth/CLI.js",
"build": "npx ts-packager -e src",
"lint": "tsc --noemit && eslint ./ --fix"
},
"keywords": [
"svelte",
"sveltekit",
"state",
"stores",
"state management",
"writable",
"derived",
"readable",
"subscription",
"middleware",
"enhancer"
],
"homepage": "https://github.com/alexfigliolia/enhanced-stores#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexfigliolia/enhanced-stores.git"
},
"author": "Alex Figliolia",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.6.1",
"jest-extended": "^4.0.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typescript": "^4.4.2"
},
"dependencies": {
"svelte": "^4.1.1"
},
"publishConfig": {
"access": "public"
}
}