-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.03 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.03 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
74
75
76
77
{
"name": "@_linked/server-utils",
"description": "",
"author": {
"name": "",
"email": "",
"url": ""
},
"repository": {
"type": "git",
"url": ""
},
"version": "1.0.4",
"linkedPackage": true,
"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"
},
"./*.js": {
"types": "./lib/esm/*.d.ts",
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js"
},
"./*": {
"types": "./lib/esm/*.d.ts",
"import": "./lib/esm/*.js",
"require": "./lib/cjs/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"lib/esm/*"
]
}
},
"license": "ISC",
"scripts": {
"start": "npm exec linked dev",
"build": "yarn linked build",
"dual-package": "echo 'adding package.json to each lib folder for dual output support' && yarn tsconfig-to-dual-package ./tsconfig-cjs.json ./tsconfig-esm.json",
"compile": "echo 'compiling CJS' && tsc -p tsconfig-cjs.json && echo 'compiling ESM' && tsc -p tsconfig-esm.json",
"copy-to-lib": "echo 'copying other files to lib folder' && yarn copyfiles -u 1 ./src/**/*.scss ./src/**/*.json ./lib/esm && yarn copyfiles -u 1 ./src/**/*.scss ./src/**/*.json ./lib/cjs",
"prepublishOnly": "yarn linked build production",
"postpublish": "npm exec linked register"
},
"keywords": [
"lincd",
"linked data",
"interoperable",
"semantic web",
"web3"
],
"dependencies": {
"@_linked/core": "^2.0.1",
"@capacitor/core": "^5.2.2",
"formidable": "^3.5.1",
"react-router-dom": "^6.14.2"
},
"devDependencies": {
"@_linked/cli": "^1.2",
"@types/node": "^20.12.7",
"copyfiles": "^2.4.1",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^5.7.3",
"typescript-plugin-css-modules": "^5.1.0",
"@changesets/cli": "^2.29.8",
"@changesets/changelog-github": "^0.5.2"
},
"publishConfig": {
"access": "public"
}
}