-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
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
{
"name": "@statebacked/react",
"description": "React hooks for interacting with the StateBacked.dev backend as a service",
"version": "0.1.3",
"license": "MIT",
"author": "Adam Berger <adam@statebacked.dev>",
"scripts": {
"build": "tsc --strict --declaration --module commonjs --sourceMap --outDir dist/lib && tsc --strict --declaration --module nodenext --moduleResolution nodenext --sourceMap --outDir dist/es && echo '{\"type\": \"commonjs\"}' > dist/lib/package.json",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --write *.{js,json,ts} src/"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"keywords": [
"statechart",
"state machine",
"scxml",
"state",
"finite state machine",
"state backed",
"backend as a service",
"paas"
],
"type": "module",
"main": "dist/lib/index.js",
"module": "dist/es/index.js",
"exports": {
".": {
"types": {
"import": "./dist/es/index.d.ts",
"require": "./dist/lib/index.d.ts"
},
"default": {
"import": "./dist/es/index.js",
"require": "./dist/lib/index.js"
}
}
},
"homepage": "https://statebacked.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/statebacked/react.git"
},
"bugs": {
"url": "https://github.com/statebacked/react/issues"
},
"peerDependencies": {
"@statebacked/client": ">=0.1.34",
"react": ">=16.8.0"
},
"devDependencies": {
"@statebacked/client": ">=0.1.34",
"@types/node": "^20.6.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2"
}
}