-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.8 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
70
71
72
{
"name": "@perspect3vism/ad4m",
"version": "0.1.40",
"description": "*The Agent-Centric Distributed Application Meta-ontology* or just: *Agent-Centric DApp Meta-ontology* * A new meta-ontology for interoperable, decentralized application design * A spanning-layer to enable seamless integration between Holochain DNAs, blockchains, linked-data structures/ontologies and centralized back-ends * The basis for turning distinct, monolithic and siloed apps into a global, open and interoperable sense-making network",
"main": "lib/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig-browser.json && npm run buildSchema && npm run bundle",
"buildSchema": "tsc && node lib/buildSchema.js",
"bundle": "rollup -c rollup.config.js",
"test": "jest --forceExit",
"docs": "jsdoc -c jsdoc.json",
"docs:api:jsdoc2md": "jsdoc2md --configure jsdoc.json --partial docs/header.hbs --global-index-format none --files src/**/* > docs-src/api.md",
"docs:api:tsconcat": "concat-md --decrease-title-levels --dir-name-as-title docs-src/typedoc > docs-src/api.md",
"docs:api:typedoc": "typedoc --plugin typedoc-plugin-markdown --options typedoc.json --tsconfig tsconfig.json --entryPointStrategy expand ./src",
"docs:api": "npm run docs:api:typedoc && npm run docs:api:tsconcat",
"docs:prepare": "honkit init docs-src",
"docs:build": "npm run docs:api && honkit build docs-src",
"docs:serve": "honkit serve docs-src",
"docs:clean": "rimraf docs-src/_book",
"docs:cp": "cp -r docs-src/_book/ docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perspect3vism/ad4m.git"
},
"author": {
"name": "Nicolas Luck",
"email": "nicolas@lucksus.eu"
},
"contributors": [
{
"name": "Joshua Parkin",
"email": "joshuadparkin@gmail.com"
}
],
"license": "CAL-1.0",
"bugs": {
"url": "https://github.com/perspect3vism/ad4m/issues"
},
"homepage": "https://ad4m.dev",
"dependencies": {
"@apollo/client": "3.6.9",
"@holochain/client": "0.3.2",
"@types/jest": "^27.0.1",
"class-validator": "^0.13.1",
"express": "^4.18.1",
"graphql": "^15.7.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.10.0",
"concat-md": "^0.5.0",
"cross-fetch": "^3.1.4",
"graphql-ws": "^5.9.1",
"honkit": "^4.0.0",
"ipfs-core-types": "0.10.1",
"jest": "^27.0.4",
"jsdoc": "^3.6.11",
"rollup": "^2.56.3",
"ts-jest": "^27.0.3",
"typedoc": "^0.23.16",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.2.4",
"ws": "^8.8.1"
}
}