-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.86 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.86 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
{
"name": "caritat",
"private": true,
"packageManager": "yarn@4.10.3+sha224.6020b3cdcdfbd7dbc24b7a7b75d58a249ce36068a8bf97d39aa8cc6d",
"version": "1.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodejs/caritat.git"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.4.1",
"@types/eslint": "^9",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.0.0",
"eslint": "^9.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"devEngines": {
"packageManager": {
"name": "yarn",
"version": "4.10.3"
},
"runtime": {
"name": "nodejs",
"version": ">=22.6.0"
}
},
"imports": {
"#ts-loader": "./packages/ts-loader/loader.js"
},
"scripts": {
"test:lint": "eslint .",
"test:types": "tsc --build --emitDeclarationOnly",
"test:unit": "node --experimental-global-webcrypto --loader '#ts-loader' test/index.ts",
"test": "yarn test:lint && yarn test:types && yarn test:unit",
"build": "tsc --build",
"deploy:cli": "rm -rf packages/cli/dist && tsc --build --force && cp README.md packages/cli/. && yarn workspace @node-core/caritat-cli npm publish --access public",
"deploy:core": "rm -rf packages/core/dist && tsc --build --force && cp README.md packages/core/. && yarn workspace @node-core/caritat npm publish --access public",
"deploy:crypto": "rm -rf packages/crypto/dist && tsc --build --force && yarn workspace @node-core/caritat-crypto npm publish --access public",
"deploy:web": "yarn workspace web-ui deploy",
"web:dev": "yarn workspace web-ui dev",
"web:deploy": "yarn workspace web-ui deploy"
},
"type": "module",
"workspaces": [
"packages/*"
],
"resolutions": {
"jest-environment-node": "patch:jest-environment-node@npm:27.4.6#.yarn/patches/jest-environment-node-npm-27.4.6-596a121c86"
}
}