-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
120 lines (120 loc) · 4.12 KB
/
package.json
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@jsenv/core",
"version": "39.14.2",
"description": "Tool to develop, test and build js projects",
"license": "MIT",
"author": {
"name": "dmail",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jsenv/core"
},
"engines": {
"node": ">=20.8.0"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"imports": {},
"exports": {
".": {
"import": {
"development": "./src/main.js",
"default": "./dist/jsenv_core.js"
}
},
"./*": "./*"
},
"main": "./src/main.js",
"files": [
"/dist/",
"/src/"
],
"volta": {
"node": "22.13.1"
},
"workspaces": [
"./packages/independent/*",
"./packages/independent/backend/*",
"./packages/independent/frontend/*",
"./packages/independent/tooling/*",
"./packages/independent/universal/*",
"./packages/internal/*",
"./packages/related/*",
"./packages/related/cli/*"
],
"scripts": {
"eslint": "npx eslint .",
"test": "node --conditions=development ./scripts/test/test.mjs",
"test:packages": "npm run test -- ./packages/",
"build": "node --conditions=development ./scripts/build/build.mjs",
"build:packages": "npm run build --workspaces --if-present --conditions=developement",
"monorepo:sync_packages_versions": "node ./scripts/monorepo/sync_packages_versions.mjs",
"monorepo:publish": "node ./scripts/monorepo/publish_packages.mjs",
"monorepo:upgrade_versions": "node ./scripts/monorepo/upgrade_external_versions.mjs",
"monorepo:node_modules_clear": "npx @jsenv/filesystem clear **/node_modules/",
"md:build": "node ./docs/build.js",
"performances": "node --expose-gc ./scripts/performance/generate_performance_report.mjs --log --once",
"build:file_size": "node ./scripts/build/build_file_size.mjs --log",
"prettier": "prettier --write .",
"test:snapshot_clear": "npx @jsenv/filesystem clear **/tests/**/side_effects/",
"test:ci": "CI=1 npm run test",
"test:packages:ci": "CI=1 npm run workspace:test",
"test:only_dev_server_errors": "node --conditions=development ./tests/dev_server/errors/dev_errors_snapshots.test.mjs",
"dev": "node --conditions=development ./scripts/dev/dev.mjs",
"playwright:install": "npx playwright install-deps && npx playwright install",
"https:setup": "npx @jsenv/https-local setup",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@financial-times/polyfill-useragent-normaliser": "1.10.2",
"@jsenv/abort": "4.3.0",
"@jsenv/ast": "6.5.2",
"@jsenv/filesystem": "4.13.4",
"@jsenv/humanize": "1.2.8",
"@jsenv/importmap": "1.2.1",
"@jsenv/integrity": "0.0.2",
"@jsenv/js-module-fallback": "1.3.59",
"@jsenv/node-esm-resolution": "1.0.7",
"@jsenv/plugin-bundling": "2.7.25",
"@jsenv/plugin-minification": "1.5.13",
"@jsenv/plugin-supervisor": "1.6.6",
"@jsenv/plugin-transpilation": "1.4.95",
"@jsenv/runtime-compat": "1.3.1",
"@jsenv/server": "15.5.2",
"@jsenv/sourcemap": "1.2.30",
"@jsenv/url-meta": "8.5.3",
"@jsenv/urls": "2.6.0",
"@jsenv/utils": "2.1.2",
"string-width": "7.2.0"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "7.26.0",
"@babel/plugin-syntax-optional-chaining-assign": "7.25.9",
"@jsenv/assert": "workspace:*",
"@jsenv/cli": "workspace:*",
"@jsenv/core": "./",
"@jsenv/eslint-config-relax": "workspace:*",
"@jsenv/file-size-impact": "workspace:*",
"@jsenv/https-local": "workspace:*",
"@jsenv/md-up": "workspace:*",
"@jsenv/monorepo": "workspace:*",
"@jsenv/performance-impact": "workspace:*",
"@jsenv/plugin-as-js-classic": "workspace:*",
"@jsenv/snapshot": "workspace:*",
"@jsenv/test": "workspace:*",
"@playwright/browser-chromium": "1.50.0",
"@playwright/browser-firefox": "1.50.0",
"@playwright/browser-webkit": "1.50.0",
"babel-plugin-transform-async-to-promises": "0.8.18",
"eslint": "9.20.1",
"open": "10.1.0",
"playwright": "1.50.0",
"prettier": "3.5.0",
"prettier-plugin-organize-imports": "4.1.0",
"strip-ansi": "7.1.0"
}
}