-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.69 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.69 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
{
"name": "@effectful/debugger",
"version": "2.0.11",
"description": "User space debugging",
"main": "vscode.js",
"repository": "https://github.com/awto/effectfuljs.git",
"author": "Vitalii Akimov <vitaliy.akimov@gmail.com>",
"license": "MIT",
"scripts": {
"test": "eslint src && jest",
"build:transform": "babel src/transform.js --out-file transform.js",
"build:decls": "tsc",
"build": "npm run build:transform && npm run build:decls",
"build:rt": "babel --extensions \".ts,.js\" --out-dir . src",
"build:deps": "pnpify node ./buildDeps",
"build-loose": "npm run build:rt && npm run build:deps",
"eslint": "eslint src",
"link-test": "node ./test/makeLinks",
"docs": "rimraf api && typedoc --plugin typedoc-plugin-markdown --out api --excludePrivate src --readme none"
},
"browser": {
"vm": false,
"worker_threads": false,
"ws": false
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/types": "^7.29.0",
"@types/asap": "^2.0.2",
"@types/babel-types": "^7.0.16",
"@types/babel__generator": "^7.27.0",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@yarnpkg/pnpify": "^4.1.6",
"assert": "^2.1.0",
"babel-loader": "^10.1.1",
"core-js-pure": "^3.49.0",
"eslint": "^10.2.0",
"events": "^3.3.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jsdom": "^29.0.2",
"lodash": "^4.18.1",
"lodash.sortby": "^4.7.0",
"path-browserify": "^1.0.1",
"prettier": "^3.8.2",
"prop-types": "^15.8.1",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"webpack": "^5.106.1",
"webpack-cli": "^7.0.2"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.2",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-function-sent": "^7.28.6",
"@babel/plugin-transform-arrow-functions": "^7.27.1",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@babel/plugin-transform-class-static-block": "^7.28.6",
"@babel/plugin-transform-classes": "^7.28.6",
"@babel/plugin-transform-destructuring": "^7.28.5",
"@babel/plugin-transform-dynamic-import": "^7.27.1",
"@babel/plugin-transform-export-namespace-from": "^7.27.1",
"@babel/plugin-transform-flow-strip-types": "^7.27.1",
"@babel/plugin-transform-logical-assignment-operators": "^7.28.6",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.28.6",
"@babel/plugin-transform-numeric-separator": "^7.28.6",
"@babel/plugin-transform-object-rest-spread": "^7.28.6",
"@babel/plugin-transform-optional-catch-binding": "^7.28.6",
"@babel/plugin-transform-optional-chaining": "^7.28.6",
"@babel/plugin-transform-parameters": "^7.27.7",
"@babel/plugin-transform-private-methods": "^7.28.6",
"@babel/plugin-transform-property-mutators": "^7.28.6",
"@babel/plugin-transform-react-display-name": "^7.28.0",
"@babel/plugin-transform-react-jsx": "^7.28.6",
"@babel/plugin-transform-shorthand-properties": "^7.27.1",
"@babel/plugin-transform-spread": "^7.28.6",
"@babel/plugin-transform-template-literals": "^7.27.1",
"@babel/plugin-transform-typescript": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.6",
"@effectful/core": "workspace:^",
"@effectful/serialization": "workspace:^",
"@vscode/debugprotocol": "^1.68.0",
"asap": "^2.0.6",
"minimatch": "^10.2.5",
"promise": "^8.3.0",
"ws": "^8.20.0"
},
"preferUnplugged": true
}