-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.86 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.86 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
69
70
71
72
73
{
"name": "@_linked/react",
"version": "1.0.0",
"license": "MIT",
"description": "React bindings for @_linked/core",
"repository": {
"type": "git",
"url": "git+https://github.com/Semantu/linked-react.git"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"types": "./lib/esm/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./*": {
"types": "./lib/esm/*.d.ts",
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"lib/esm/*"
]
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"lib",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "npx rimraf ./lib && npx tsc -p tsconfig-cjs.json && npx tsc -p tsconfig-esm.json && node ./scripts/dual-package.js",
"compile": "echo '💫 Compiling CJS' && npx tsc -p tsconfig-cjs.json && echo '💫 Compiling ESM' && npx tsc -p tsconfig-esm.json",
"dual-package": "node ./scripts/dual-package.js",
"test": "npx jest --config jest.config.js"
},
"peerDependencies": {
"@_linked/core": "^1.0.0",
"react": "^18.2.0"
},
"dependencies": {
"react-usestateref": "^1.0.8"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@_linked/core": "^1.0.0",
"@_linked/rdf-mem-store": "^1.0.0",
"@testing-library/react": "^14.2.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.2",
"typescript": "^5.7.3"
}
}