-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.18 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.18 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
78
79
80
81
82
83
84
85
86
87
{
"name": "@polywrap/basic-client-js",
"description": "Polywrap JavaScript Basic Client",
"version": "0.12.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/polywrap/javascript-client.git"
},
"main": "build/index.js",
"files": [
"src",
"build",
"README.md"
],
"scripts": {
"build": "yarn build:fast",
"build:docs": "yarn build:snippets && yarn build:readme",
"build:fast": "rimraf ./build && tsc --project tsconfig.build.json",
"lint": "eslint --color -c ../../.eslintrc.js src/",
"test": "jest --passWithNoTests --runInBand --verbose=true --detectOpenHandles --forceExit --config ../../jest.config.js --rootDir .",
"build:snippets": "tsc --project ./examples/tsconfig.examples.json",
"build:readme": "yarn doc-snippets combine"
},
"dependencies": {
"@polywrap/core-js": "0.12.2",
"@polywrap/msgpack-js": "0.12.2",
"@polywrap/result": "0.12.2",
"@polywrap/tracing-js": "0.12.2",
"@polywrap/wrap-manifest-types-js": "0.12.2"
},
"devDependencies": {
"@polywrap/test-cases": "0.12.2",
"@polywrap/uri-resolvers-js": "0.12.2",
"@types/jest": "29.5.0",
"@types/uuid": "8.3.0",
"doc-snippets": "~1.0.0",
"jest": "29.5.0",
"rimraf": "3.0.2",
"ts-jest": "29.1.0",
"ts-loader": "8.0.17",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public"
},
"doc-snippets": {
"extract": {
"include": [
"./src/**/*.{ts,tsx,json,yaml,txt,md,graphql,cue}",
"./examples/**/*.{ts,tsx,json,yaml,txt,md,graphql,cue}"
],
"ignore": [
"./**/node_modules/**",
"./**/.polywrap/**",
"./**/__tests__/**"
],
"dir": "./"
},
"inject": {
"dir": "./readme",
"include": "./README.md"
},
"startTokens": [
{
"pattern": "$start: ",
"inline": false
},
{
"pattern": "/* $: {SNIPPET_NAME} */",
"inline": true
}
],
"endTokens": [
{
"pattern": "$end",
"inline": false
},
{
"pattern": "/* $ */",
"inline": true
}
],
"outputDir": "./"
}
}