UNPKG

3.36 kBJSONView Raw
1{
2 "name": "imba",
3 "description": "Intuitive and powerful language for building webapps that fly",
4 "keywords": [
5 "javascript",
6 "language",
7 "imba",
8 "compiler"
9 ],
10 "author": "Sindre Aarsaether",
11 "license": "MIT",
12 "contributors": [
13 {
14 "name": "Sindre Aarsaether",
15 "email": "sindre@identu.no",
16 "url": "https://github.com/somebee/"
17 },
18 {
19 "name": "Magnus Holm",
20 "email": "judofyr@gmail.com",
21 "url": "https://github.com/judofyr/"
22 },
23 {
24 "name": "Slee Woo",
25 "url": "https://github.com/sleewoo/"
26 },
27 {
28 "name": "Luke Edwards",
29 "email": "luke@lukeed.com",
30 "url": "https://github.com/lukeed/"
31 },
32 {
33 "name": "Gavin Ray",
34 "url": "https://github.com/GavinRay97/"
35 },
36 {
37 "name": "Alexander Alemayhu",
38 "url": "https://github.com/aalemayhu/"
39 }
40 ],
41 "scripts": {
42 "test": "node bin/imba scripts/test-runner.imba",
43 "test-cli": "cd test/cli && node ../../bin/imba index.imba",
44 "clean": "find test/apps -name '*.js' -type f -delete && rm -r dist/",
45 "build": "node scripts/build-parser.js && node scripts/build.js",
46 "build-parser": "node scripts/build-parser.js",
47 "watch": "node scripts/build.js -w",
48 "prepublish": "node scripts/build-parser.js && node scripts/build.js",
49 "create-example": "node bin/imba scripts/create-example.imba",
50 "generate-typings": "node bin/imba scripts/docs/generate-typings.imba"
51 },
52 "bugs": "https://github.com/imba/imba/issues",
53 "version": "2.0.0-alpha.218",
54 "licenses": [
55 {
56 "type": "MIT",
57 "url": "https://github.com/imba/imba/raw/master/LICENSE"
58 }
59 ],
60 "engines": {
61 "node": ">=13.10.0"
62 },
63 "directories": {},
64 "main": "./index",
65 "type": "commonjs",
66 "browser": {
67 ".": "./dist/imba.mjs",
68 "./program": "./program.imba.js",
69 "./compiler": "./compiler.imba.js"
70 },
71 "exports": {
72 ".": {
73 "imba": "./src/imba/imba.imba",
74 "browser": "./dist/imba.mjs",
75 "default": "./index.js"
76 },
77 "./program": "./program.imba.js",
78 "./workers": "./workers.imba.js",
79 "./loader": "./loader.imba.js",
80 "./compiler": {
81 "browser": "./dist/compiler.mjs",
82 "require": "./dist/compiler.cjs",
83 "default": "./compiler.imba.js"
84 }
85 },
86 "bin": {
87 "imba": "./bin/imba",
88 "imbac": "./bin/imbac",
89 "imba-create": "./bin/imba-create"
90 },
91 "preferGlobal": true,
92 "homepage": "https://imba.io",
93 "repository": {
94 "type": "git",
95 "url": "git://github.com/imba/imba.git"
96 },
97 "files": [
98 "bin",
99 "src",
100 "dist",
101 "build",
102 "typings",
103 "vendor",
104 "scripts/bootstrap.compiler.js",
105 "polyfills",
106 "*.imba",
107 "*.d.ts",
108 "*.js",
109 "*.css",
110 "*.md"
111 ],
112 "devDependencies": {
113 "commander": "^6.2.1",
114 "enquirer": "^2.3.6",
115 "eventemitter3": "^4.0.7",
116 "fdir": "^4.1.0",
117 "flatted": "^3.1.0",
118 "get-port": "^5.1.1",
119 "image-size": "^0.9.3",
120 "micromatch": "^4.0.2",
121 "node-fetch": "^2.6.1",
122 "ora": "^5.2.0",
123 "picomatch": "^2.2.2",
124 "puppeteer": "^16.1.0",
125 "sourcemap-codec": "^1.4.8",
126 "tmp": "^0.2.1",
127 "tree-kill": "^1.2.2",
128 "workerpool": "^6.0.3"
129 },
130 "dependencies": {
131 "chokidar": "^3.4.3",
132 "esbuild": "^0.15.2"
133 },
134 "gitHead": "a5e37c309395ab62e9e529d582eefeed588433a5"
135}