-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.94 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
{
"name": "caritat",
"private": true,
"packageManager": "yarn@4.14.1+sha224.88b7a7244bbd9040380c417f7eb556d85c67640b651f113cb4c72113",
"version": "1.7.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"
},
"dependenciesMeta": {
"svelte-preprocess": {
"built": true
}
},
"devEngines": {
"packageManager": {
"name": "yarn",
"version": "4.14.1"
},
"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"
}
}