forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.63 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"name": "@microsoft/dotnet-runtime",
"description": ".NET is a developer platform with tools and libraries for building any type of app, including web, mobile, desktop, games, IoT, cloud, and microservices.",
"repository": {
"type": "git",
"url": "https://github.com/dotnet/runtime.git"
},
"version": "1.0.0",
"main": "dotnet.js",
"type": "module",
"types": "dotnet.d.ts",
"scripts": {
"rollup:stub": "node rollup.stub.js",
"rollup:cmake": "rollup -c --environment ",
"rollup:release": "rollup -c --environment Configuration:Release,ProductVersion:10.0.0-dev,ContinuousIntegrationBuild:false",
"rollup:debug": "rollup -c --environment Configuration:Debug,ProductVersion:10.0.0-dev,ContinuousIntegrationBuild:false",
"lint": "eslint --no-color --max-warnings=0 \"./**/*.ts\" \"./**/*.js\"",
"format": "eslint --fix \"./**/*.ts\" \"./*.js\""
},
"keywords": [
"dotnet",
"runtime",
"wasm"
],
"author": "Microsoft",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.4",
"@rollup/plugin-virtual": "3.0.2",
"@types/node": "24.5.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"fast-glob": "3.3.3",
"git-commit-info": "2.0.2",
"magic-string": "0.30.19",
"rollup": "4.52.2",
"rollup-plugin-dts": "6.2.3",
"terser": "5.44.0",
"tslib": "2.8.1",
"typescript": "5.9.2"
},
"overrides": {
"cross-spawn": "7.0.6"
},
"dependencies": {
"wasm-feature-detect": "1.8.0"
}
}