UNPKG

3.77 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 "watch": "node scripts/build.js -w",
46 "create-example": "node bin/imba scripts/create-example.imba",
47 "generate-typings": "node bin/imba scripts/docs/generate-typings.imba",
48 "build-parser": "node scripts/build-parser.js",
49 "build": "npm run build-parser && node scripts/build.js",
50 "prepare": "npm run build"
51 },
52 "bugs": "https://github.com/imba/imba/issues",
53 "version": "2.0.0-next-1668524708.42+990a3fcc",
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": "./dist/compiler.mjs"
70 },
71 "exports": {
72 "./preflight.css": "./preflight.css",
73 "./server": "./dist/imba.node.mjs",
74 ".": {
75 "imba": "./src/imba/imba.imba",
76 "browser": "./dist/imba.mjs",
77 "default": "./index.js"
78 },
79 "./spec": {
80 "imba": "./src/utils/spec.imba"
81 },
82 "./program": "./program.imba.js",
83 "./workers": "./workers.imba.js",
84 "./compiler": {
85 "browser": "./dist/compiler.mjs",
86 "require": "./dist/compiler.cjs",
87 "default": "./dist/compiler.mjs"
88 }
89 },
90 "bin": {
91 "imba": "./bin/imba",
92 "imbac": "./bin/imbac"
93 },
94 "preferGlobal": true,
95 "homepage": "https://imba.io",
96 "repository": {
97 "type": "git",
98 "url": "git://github.com/imba/imba.git"
99 },
100 "files": [
101 "bin",
102 "src",
103 "dist",
104 "build",
105 "typings",
106 "vendor",
107 "scripts/bootstrap.compiler.js",
108 "polyfills",
109 "*.imba",
110 "*.d.ts",
111 "*.js",
112 "*.css",
113 "*.md",
114 "templates"
115 ],
116 "peerDependencies": {
117 "@testing-library/dom": "*",
118 "@testing-library/jest-dom": "*",
119 "vite": "*",
120 "vite-node": "*",
121 "vite-plugin-imba": "*",
122 "vitest": "*"
123 },
124 "devDependencies": {
125 "commander": "^6.2.1",
126 "enquirer": "^2.3.6",
127 "eventemitter3": "^4.0.7",
128 "fdir": "^4.1.0",
129 "flatted": "^3.1.0",
130 "get-port": "^5.1.1",
131 "image-size": "^0.9.3",
132 "micromatch": "^4.0.5",
133 "node-fetch": "^2.6.1",
134 "ora": "^5.2.0",
135 "picomatch": "^2.2.2",
136 "puppeteer": "^16.1.0",
137 "sourcemap-codec": "^1.4.8",
138 "tmp": "^0.2.1",
139 "tree-kill": "^1.2.2",
140 "workerpool": "^6.0.3"
141 },
142 "dependencies": {
143 "@antfu/install-pkg": "^0.1.1",
144 "chokidar": "^3.4.3",
145 "colors": "^1.4.0",
146 "cross-spawn": "^7.0.3",
147 "esbuild": "^0.15.2",
148 "local-pkg": "^0.4.2",
149 "picocolors": "^1.0.0",
150 "prompts": "^2.4.2"
151 },
152 "gitHead": "990a3fcc50d8961bdb69dfdfd3a2e9db549fb574"
153}