-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
{
"name": "@arnosaine/is",
"version": "0.2.7",
"description": "Feature Flags, Roles and Permissions-based rendering, A/B Testing, Experimental Features, and more in React.",
"keywords": [
"react",
"conditional-rendering",
"feature-flags",
"authentication",
"permissions",
"conditional-logic",
"remix",
"react-router",
"dynamic-content",
"a/b-testing",
"role-based-access-control",
"rbac"
],
"homepage": "https://github.com/ArnoSaine/is",
"repository": {
"type": "git",
"url": "https://github.com/ArnoSaine/is.git"
},
"license": "ISC",
"author": {
"name": "Arno Saine",
"email": "[email protected]"
},
"type": "module",
"main": "./lib/main.js",
"files": [
"lib",
"src"
],
"workspaces": [
".",
"examples/*"
],
"scripts": {
"build": "tsc",
"build:examples": "./build-examples.sh",
"dev": "tsc --watch",
"release": "npm run build && npm test && changeset version && changeset publish",
"start:examples": "serve public/ --listen 3000",
"test": "node --test && tsc --project tsconfig.test.json",
"test:watch": "concurrently \"node --test --watch\" \"tsc --project tsconfig.test.json --watch\""
},
"dependencies": {
"lodash-es": "^4.17.21",
"react-router": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.3",
"@remix-run/node": "^2.8.1",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"concurrently": "^8.2.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}