-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 998 Bytes
/
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
{
"name": "react-use-svelte-store",
"version": "1.3.1",
"description": "Consume svelte-stores from react, with hooks",
"main": "cjs/index.js",
"module": "es6/index.js",
"files": [
"cjs",
"es6",
"src"
],
"scripts": {
"clean:esm": "rm -rf esm",
"clean:cjs": "rm -rf cjs",
"clean": "run-p clean:*",
"build:esm": "tsc",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "run-p build:*",
"dev:esm": "tsc -w",
"dev:cjs": "tsc -w --project tsconfig.cjs.json",
"dev": "run-p dev:*",
"prepare": "run-s clean build",
"postversion": "git push && git push --tags && npm publish --access=public"
},
"keywords": [
"react",
"svelte",
"svelte-store"
],
"author": "Christopher Pfohl",
"license": "MIT",
"devDependencies": {
"@types/react": "^17.0.0",
"npm-run-all": "^4.1.5",
"react": ">=16.8",
"svelte": ">=3",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">=16.8"
}
}