UNPKG

2.51 kBJSONView Raw
1{
2 "name": "snowpack",
3 "version": "3.0.10",
4 "description": "The ESM-powered frontend build tool. Fast, lightweight, unbundled.",
5 "author": "Fred K. Schott <fkschott@gmail.com>",
6 "license": "MIT",
7 "keywords": [
8 "bundle",
9 "build",
10 "build tool",
11 "web",
12 "esm",
13 "esbuild",
14 "wasm"
15 ],
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/snowpackjs/snowpack.git"
19 },
20 "publishConfig": {
21 "access": "public"
22 },
23 "scripts": {
24 "build": "tsc --noUnusedLocals false --noUnusedParameters false",
25 "build:watch": "tsc --watch --noUnusedLocals false --noUnusedParameters false",
26 "bundle": "webpack -c ./scripts/generate-vendor.js && rollup -c ./scripts/generate-bundle.js && node ./scripts/generate-types.js",
27 "lint": "tsc --noEmit"
28 },
29 "engines": {
30 "node": ">=10.19.0"
31 },
32 "type": "commonjs",
33 "types": "./lib/index.d.ts",
34 "main": "./lib/index.js",
35 "exports": "./lib/index.js",
36 "bin": {
37 "sp": "./index.bin.js",
38 "snowpack": "./index.bin.js"
39 },
40 "files": [
41 "assets",
42 "lib",
43 "index.bin.js",
44 "index.bundle.js",
45 "vendor"
46 ],
47 "dependencies": {
48 "esbuild": "^0.8.7",
49 "open": "^7.0.4"
50 },
51 "optionalDependencies": {
52 "fsevents": "^2.2.0"
53 },
54 "devDependencies": {
55 "@types/cheerio": "0.22.22",
56 "bufferutil": "^4.0.2",
57 "cacache": "^15.0.0",
58 "cachedir": "^2.3.0",
59 "cheerio": "1.0.0-rc.3",
60 "chokidar": "^3.4.0",
61 "compressible": "^2.0.18",
62 "cosmiconfig": "^7.0.0",
63 "deepmerge": "^4.2.2",
64 "detect-port": "^1.3.0",
65 "es-module-lexer": "^0.3.24",
66 "esinstall": "^1.0.0",
67 "estree-walker": "^2.0.2",
68 "etag": "^1.8.1",
69 "execa": "^5.0.0",
70 "find-cache-dir": "^3.3.1",
71 "find-up": "^5.0.0",
72 "glob": "^7.1.4",
73 "httpie": "^1.1.2",
74 "is-plain-object": "^5.0.0",
75 "is-reference": "^1.2.1",
76 "isbinaryfile": "^4.0.6",
77 "jsonschema": "~1.2.5",
78 "kleur": "^4.1.1",
79 "meriyah": "^3.1.6",
80 "mime-types": "^2.1.26",
81 "mkdirp": "^1.0.3",
82 "npm-run-path": "^4.0.1",
83 "p-queue": "^6.6.1",
84 "periscopic": "^2.0.3",
85 "postcss": "^8.2.4",
86 "postcss-modules": "^4.0.0",
87 "resolve-from": "^5.0.0",
88 "rimraf": "^3.0.0",
89 "signal-exit": "^3.0.3",
90 "skypack": "^0.3.0",
91 "source-map": "^0.7.3",
92 "strip-ansi": "^6.0.0",
93 "strip-comments": "^2.0.1",
94 "utf-8-validate": "^5.0.3",
95 "webpack": "^5.10.1",
96 "webpack-cli": "^4.2.0",
97 "ws": "^7.3.0",
98 "yargs-parser": "^20.0.0"
99 }
100}