UNPKG

2.39 kBJSONView Raw
1{
2 "name": "@blueprintjs/icons",
3 "version": "3.30.2",
4 "description": "Components, fonts, icons, and css files for creating and displaying icons.",
5 "main": "lib/cjs/index.js",
6 "module": "lib/esm/index.js",
7 "esnext": "lib/esnext/index.js",
8 "typings": "lib/esm/index.d.ts",
9 "style": "lib/css/blueprint-icons.css",
10 "unpkg": "dist/icons.bundle.js",
11 "sideEffects": [
12 "**/*.css"
13 ],
14 "scripts": {
15 "clean": "rm -rf dist/* && rm -rf lib/* && rm -rf src/generated/*",
16 "compile": "npm-run-all -s \"compile:pre\" -p \"compile:*\"",
17 "compile:pre": "generate-icons-source",
18 "compile:esm": "tsc -p ./src",
19 "compile:cjs": "tsc -p ./src -m commonjs --outDir lib/cjs",
20 "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
21 "compile:css": "sass-compile ./src",
22 "dev": "run-p \"compile:esm -- --watch\" \"compile:css -- --watch\"",
23 "dist": "run-s \"dist:*\"",
24 "dist:bundle": "cross-env NODE_ENV=production webpack",
25 "dist:css": "css-dist lib/css/*.css",
26 "dist:variables": "generate-css-variables generated/_icon-variables.scss",
27 "dist:verify": "assert-package-layout",
28 "lint": "run-p lint:scss lint:es",
29 "lint:scss": "sass-lint",
30 "lint:es": "es-lint",
31 "lint-fix": "es-lint --fix && sass-lint --fix",
32 "test": "run-s test:typeCheck test:iso",
33 "test:typeCheck": "tsc -p ./test",
34 "test:iso": "mocha test/isotest.js",
35 "verify": "npm-run-all compile -p dist test lint"
36 },
37 "dependencies": {
38 "classnames": "^2.2",
39 "tslib": "~1.13.0"
40 },
41 "devDependencies": {
42 "@blueprintjs/node-build-scripts": "^1.6.1",
43 "@blueprintjs/test-commons": "^0.10.14",
44 "enzyme": "^3.11.0",
45 "mocha": "^8.2.1",
46 "npm-run-all": "^4.1.5",
47 "react": "^16.14.0",
48 "react-dom": "^16.14.0",
49 "react-test-renderer": "^16.14.0",
50 "typescript": "~4.1.2",
51 "webpack-cli": "^3.3.12"
52 },
53 "repository": {
54 "type": "git",
55 "url": "git@github.com:palantir/blueprint.git",
56 "directory": "packages/icons"
57 },
58 "keywords": [
59 "palantir",
60 "blueprint",
61 "theme",
62 "react",
63 "icon"
64 ],
65 "author": "Palantir Technologies",
66 "license": "Apache-2.0"
67}