-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.01 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
{
"name": "whiteflag-js",
"version": "1.0.0",
"description": "JavaScript implementation of the Whiteflag protocol",
"license": "CC0-1.0",
"private": true,
"keywords": [
"whiteflag",
"protocol",
"blockchain"
],
"workspaces": [
"./dist/core",
"./dist/crypto",
"./dist/main",
"./dist/util"
],
"directories": {
"dist": "dist",
"dos": "docs",
"src": "src",
"test": "test"
},
"homepage": "https://github.com/WhiteflagProtocol/whiteflag-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/WhiteflagProtocol/whiteflag-js.git"
},
"bugs": {
"url": "https://github.com/WhiteflagProtocol/whiteflag-js/issues"
},
"type": "module",
"dependencies": {
"@whiteflagprotocol/core": "file:./dist/core",
"@whiteflagprotocol/crypto": "file:./dist/crypto",
"@whiteflagprotocol/main": "file:./dist/main",
"@whiteflagprotocol/util": "file:./dist/util"
},
"devDependencies": {
"@types/node": "latest",
"copyfiles": "^2.4.1",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"typedoc": "latest",
"typescript": "^5.9.3"
},
"scripts": {
"test": "tsc && mocha --recursive",
"docs:cleanup": "rimraf -g ./docs/typedoc/**/*",
"docs:typedoc": "typedoc",
"docs": "npm-run-all docs:*",
"build:cleanup": "rimraf -g ./dist/**/*.md ./dist/**/*.json ./dist/**/**/*.json ./dist/**/*.js ./dist/**/**/*.js ./dist/**/*.ts ./dist/**/**/*.ts",
"build:compile": "tsc --declaration false --removeComments true",
"build:declaration": "tsc --emitDeclarationOnly --declaration true --removeComments false",
"build:packages": "copyfiles -u 1 src/**/package.json src/**/*.md dist",
"build:test": "mocha --recursive --reporter dot",
"build:docs": "npm run docs",
"build": "npm-run-all build:*"
}
}