-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@universalweb/acid",
"version": "4.0.0",
"description": "Acidjs is a robust, modern, modular, & async focused Javascript utility library. Acidjs includes utilities for all environments: Web Browser, Nodejs, Deno, Web Workers, & Electron.",
"keywords": [
"Acid",
"utility",
"util",
"modules",
"stdlib"
],
"homepage": "https://acidjs.com",
"bugs": {
"url": "https://github.com/universalweb/Acid/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universalweb/Acid.git",
"directory": "github"
},
"company": "Universal Web",
"readme": "README.md",
"publishConfig": {
"access": "public"
},
"license": "ISC",
"maintainers": [
{
"name": "UniversalWeb",
"email": "info@universal.web",
"url": "uw://universalweb"
},
{
"name": "UniversalWeb",
"email": "info@viat.network"
}
],
"type": "module",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests",
"build": "build",
"npm": "npm",
"source": "source"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "node index.js",
"changelog": "npx auto-changelog -p --sort-commits date-desc && git add CHANGELOG.md",
"buildProduction": "production=true node index.js",
"bumpVersion": "pnpm version patch --force && cd ./package/ && pnpm version patch --force",
"publishAll": "pnpm publish ./npm/ && cd ./github/ && pnpm publish && cd ../",
"publish": "pnpm update && pnpm run bumpVersion && pnpm run buildProduction && pnpm run changelog && pnpm run publishAll",
"publishGitHub": "cd ./github/ && pnpm publish --access public && cd ../"
},
"dependencies": {
"@eslint/json": "^2.0.0",
"@eslint/markdown": "^8.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/rollup-darwin-arm64": "^4.60.4",
"@stylistic/eslint-plugin": "^5.10.0",
"auto-changelog": "^2.5.1",
"body-parser": "2.2.2",
"connect-livereload": "0.6.1",
"eslint": "^10.4.0",
"eslint-plugin-jsdoc": "^63.0.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"express": "^5.2.1",
"globals": "^17.6.0",
"magic-string": "^0.30.21",
"node-watch": "^0.7.4",
"prettier-eslint": "^16.4.2",
"rollup": "^4.60.4",
"rollup-plugin-node-externals": "^9.0.1",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"tiny-lr": "^2.0.0",
"ts-api-utils": "^2.5.0",
"typescript": "^6.0.3"
},
"auto-changelog": {
"commitLimit": false,
"output": "CHANGELOG.md",
"template": "./maintenance/keepachangelog.hbs",
"unreleased": true
},
"imports": {
"#type/*": "./source/type/*.js"
},
"pnpm": {
"onlyBuiltDependencies": [
"core-js",
"rollup"
]
},
"packageManager": "pnpm@10.32.0"
}