FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
assemblyscript/package.json at main · AssemblyScript/assemblyscript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
AssemblyScript
/
assemblyscript
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
693
Star
18k
Code
Issues
180
Pull requests
21
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
assemblyscript
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
114 lines (114 loc) · 4.76 KB
Breadcrumbs
assemblyscript
/
package.json
Copy path
File metadata and controls
114 lines (114 loc) · 4.76 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{
"name"
:
"
assemblyscript
"
,
"description"
:
"
A TypeScript-like language for WebAssembly.
"
,
"keywords"
: [
"
typescript
"
,
"
webassembly
"
,
"
compiler
"
,
"
assemblyscript
"
,
"
wasm
"
],
"version"
:
"
0.0.0
"
,
"author"
:
"
Daniel Wirtz <dcode+assemblyscript@dcode.io>
"
,
"license"
:
"
Apache-2.0
"
,
"homepage"
:
"
https://assemblyscript.org
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
https://github.com/AssemblyScript/assemblyscript.git
"
},
"bugs"
: {
"url"
:
"
https://github.com/AssemblyScript/assemblyscript/issues
"
},
"engines"
: {
"node"
:
"
>=20
"
,
"npm"
:
"
>=10
"
},
"engineStrict"
:
true
,
"dependencies"
: {
"binaryen"
:
"
131.0.0-nightly.20260721
"
,
"long"
:
"
^5.2.4
"
},
"devDependencies"
: {
"@eslint/js"
:
"
^10.0.1
"
,
"@types/node"
:
"
^26.1.1
"
,
"as-float"
:
"
^1.0.1
"
,
"diff"
:
"
^9.0.0
"
,
"esbuild"
:
"
^0.28.1
"
,
"eslint"
:
"
^10.7.0
"
,
"glob"
:
"
^13.0.6
"
,
"globals"
:
"
^17.7.0
"
,
"typescript"
:
"
^6.0.3
"
,
"typescript-eslint"
:
"
^8.65.0
"
},
"type"
:
"
module
"
,
"exports"
: {
"."
: {
"import"
:
"
./dist/assemblyscript.js
"
,
"types"
:
"
./dist/assemblyscript.d.ts
"
},
"./asc"
: {
"import"
:
"
./dist/asc.js
"
,
"types"
:
"
./dist/asc.d.ts
"
},
"./transform"
: {
"import"
:
"
./dist/transform.js
"
,
"types"
:
"
./dist/transform.d.ts
"
,
"require"
:
"
./dist/transform.cjs
"
},
"./binaryen"
: {
"import"
:
"
./lib/binaryen.js
"
,
"types"
:
"
./lib/binaryen.d.ts
"
},
"./*"
:
"
./*
"
},
"imports"
: {
"#rtrace"
: {
"import"
:
"
./lib/rtrace/index.js
"
,
"types"
:
"
./lib/rtrace/index.d.ts
"
}
},
"bin"
: {
"asc"
:
"
./bin/asc.js
"
,
"asinit"
:
"
./bin/asinit.js
"
},
"scripts"
: {
"check"
:
"
npm run check:config && npm run check:import && npm run lint
"
,
"check:config"
:
"
tsc --noEmit -p src --diagnostics --listFiles
"
,
"check:import"
:
"
tsc --noEmit --skipLibCheck --target ESNEXT --module nodenext --moduleResolution nodenext --experimentalDecorators tests/import/index
"
,
"lint"
:
"
eslint --max-warnings 0 --ext js . && eslint --max-warnings 0 --ext ts .
"
,
"build"
:
"
node scripts/build
"
,
"watch"
:
"
node scripts/build --watch
"
,
"coverage"
:
"
npx c8 -- npm test
"
,
"test"
:
"
npm run test:parser && npm run test:compiler -- --parallel && npm run test:browser && npm run test:asconfig && npm run test:transform && npm run test:cli
"
,
"test:parser"
:
"
node --enable-source-maps tests/parser
"
,
"test:compiler"
:
"
node --enable-source-maps --no-warnings tests/compiler
"
,
"test:browser"
:
"
node --enable-source-maps tests/browser
"
,
"test:asconfig"
:
"
cd tests/asconfig && npm run test
"
,
"test:transform"
:
"
npm run test:transform:esm && npm run test:transform:cjs
"
,
"test:transform:esm"
:
"
node bin/asc tests/compiler/empty --transform ./tests/transform/index.js --noEmit && node bin/asc tests/compiler/empty --transform ./tests/transform/simple.js --noEmit
"
,
"test:transform:cjs"
:
"
node bin/asc tests/compiler/empty --transform ./tests/transform/cjs/index.js --noEmit && node bin/asc tests/compiler/empty --transform ./tests/transform/cjs/simple.js --noEmit
"
,
"test:cli"
:
"
node tests/cli/options.js
"
,
"asbuild"
:
"
npm run asbuild:debug && npm run asbuild:release
"
,
"asbuild:debug"
:
"
node bin/asc --config src/asconfig.json --target debug
"
,
"asbuild:release"
:
"
node bin/asc --config src/asconfig.json --target release
"
,
"asbuild:rtraced"
:
"
node bin/asc --config src/asconfig.json --target rtraced
"
,
"bootstrap"
:
"
npm run bootstrap:debug && npm run bootstrap:release
"
,
"bootstrap:debug"
:
"
node bin/asc --config src/asconfig.json --target debug && node bin/asc --config src/asconfig.json --target debug-bootstrap --wasm ./build/assemblyscript.debug.js && node bin/asc --config src/asconfig.json --target debug-bootstrap --wasm ./build/assemblyscript.debug-bootstrap.js && git --no-pager diff --no-index build/assemblyscript.debug.wast build/assemblyscript.debug-bootstrap.wast
"
,
"bootstrap:release"
:
"
node bin/asc --config src/asconfig.json --target release && node bin/asc --config src/asconfig.json --target release-bootstrap --wasm ./build/assemblyscript.release.js && node bin/asc --config src/asconfig.json --target release-bootstrap --wasm ./build/assemblyscript.release-bootstrap.js && git --no-pager diff --no-index build/assemblyscript.release.wast build/assemblyscript.release-bootstrap.wast
"
,
"bootstrap:rtraced"
:
"
node bin/asc --config src/asconfig.json --target rtraced && node bin/asc --config src/asconfig.json --target rtraced --wasm ./build/assemblyscript.rtraced.js
"
},
"files"
: [
"
bin/
"
,
"
dist/
"
,
"
std/
"
,
"
util/
"
,
"
lib/binaryen.js
"
,
"
lib/binaryen.d.ts
"
,
"
tsconfig-base.json
"
,
"
NOTICE
"
],
"funding"
: {
"type"
:
"
opencollective
"
,
"url"
:
"
https://opencollective.com/assemblyscript
"
}
}
Back
|
FazBrowse Home
|
New Git URL