@trustvc/trustvc 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/dist/.coverage/.tmp/coverage-0.json +1 -0
- package/dist/esm/.coverage/.tmp/coverage-0.json +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/node_modules/.vitest/vitest/results.json +1 -0
- package/dist/esm/types.js +1 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/node_modules/.vitest/vitest/results.json +1 -0
- package/dist/types.d.mts +2 -0
- package/dist/types.d.ts +2 -0
- package/dist/types.js +2 -0
- package/package.json +82 -0
package/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"result":[{"scriptId":"662","url":"file:///Users/haninn/Documents/Git/TradeTrust/trustvc/src/index.test.ts","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1301,"count":1}],"isBlockCoverage":true},{"functionName":"","ranges":[{"startOffset":13,"endOffset":1301,"count":1},{"startOffset":295,"endOffset":1300,"count":0}],"isBlockCoverage":true},{"functionName":"","ranges":[{"startOffset":331,"endOffset":439,"count":0}],"isBlockCoverage":false}]}]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"result":[{"scriptId":"662","url":"file:///Users/haninn/Documents/Git/TradeTrust/trustvc/src/index.test.ts","functions":[{"functionName":"","ranges":[{"startOffset":0,"endOffset":1301,"count":1}],"isBlockCoverage":true},{"functionName":"","ranges":[{"startOffset":13,"endOffset":1301,"count":1},{"startOffset":295,"endOffset":1300,"count":0}],"isBlockCoverage":true},{"functionName":"","ranges":[{"startOffset":331,"endOffset":439,"count":0}],"isBlockCoverage":false}]}]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"1.6.0","results":[[":index.test.ts",{"duration":0,"failed":true}]]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/dist/index.d.mts
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"1.6.0","results":[[":index.test.ts",{"duration":0,"failed":true}]]}
|
package/dist/types.d.mts
ADDED
package/dist/types.d.ts
ADDED
package/dist/types.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@trustvc/trustvc",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "TrustVC library",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "npx vitest --run",
|
|
13
|
+
"lint": "tsc && npx eslint . --color --format=table --max-warnings=0",
|
|
14
|
+
"build": "npm run clean && tsup",
|
|
15
|
+
"clean": "rm -rf dist/",
|
|
16
|
+
"precommit": "lint-staged",
|
|
17
|
+
"prepare": "husky",
|
|
18
|
+
"release": "semantic-release --parallel=1 --repositoryUrl=https://github.com/TrustVC/trustvc.git --verbose"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"trustvc"
|
|
22
|
+
],
|
|
23
|
+
"author": "IMDA",
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=18.17.0"
|
|
27
|
+
},
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"import": "./dist/esm/index.js",
|
|
32
|
+
"require": "./dist/index.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@commitlint/cli": "^19.3.0",
|
|
37
|
+
"@commitlint/config-conventional": "^19.2.2",
|
|
38
|
+
"@commitlint/config-nx-scopes": "^19.5.0",
|
|
39
|
+
"@commitlint/prompt": "^19.3.1",
|
|
40
|
+
"@semantic-release/npm": "^9.0.2",
|
|
41
|
+
"@types/conventional-commits-parser": "^5.0.0",
|
|
42
|
+
"@types/node": "^18.17.0",
|
|
43
|
+
"@vitest/coverage-v8": "^1.6.0",
|
|
44
|
+
"cpy": "^11.1.0",
|
|
45
|
+
"eslint": "^9.11.1",
|
|
46
|
+
"eslint-config-prettier": "^9.1.0",
|
|
47
|
+
"eslint-formatter-table": "^7.32.1",
|
|
48
|
+
"eslint-plugin-node": "^11.1.0",
|
|
49
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
50
|
+
"eslint-plugin-promise": "^7.0.0",
|
|
51
|
+
"execa": "^9.4.0",
|
|
52
|
+
"husky": "^9.1.4",
|
|
53
|
+
"lint-staged": "^15.2.8",
|
|
54
|
+
"prettier": "^3.3.2",
|
|
55
|
+
"rimraf": "^5.0.10",
|
|
56
|
+
"semantic-release": "^20.1.3",
|
|
57
|
+
"tsup": "^8.3.0",
|
|
58
|
+
"typescript": "^5.6.2",
|
|
59
|
+
"typescript-eslint": "^8.8.0",
|
|
60
|
+
"vite-plugin-dts": "^3.9.1",
|
|
61
|
+
"vitest": "^1.6.0"
|
|
62
|
+
},
|
|
63
|
+
"lint-staged": {
|
|
64
|
+
"*.{js,ts}": [
|
|
65
|
+
"eslint --fix",
|
|
66
|
+
"prettier --write"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"repository": {
|
|
70
|
+
"type": "git",
|
|
71
|
+
"url": "https://github.com/trustvc/trustvc.git"
|
|
72
|
+
},
|
|
73
|
+
"bugs": {
|
|
74
|
+
"url": "https://github.com/trustvc/trustvc/issues"
|
|
75
|
+
},
|
|
76
|
+
"homepage": "https://github.com/trustvc/trustvc#readme",
|
|
77
|
+
"publishConfig": {
|
|
78
|
+
"access": "public",
|
|
79
|
+
"registry": "https://registry.npmjs.org/"
|
|
80
|
+
},
|
|
81
|
+
"private": false
|
|
82
|
+
}
|