UNPKG

2.82 kBJSONView Raw
1{
2 "name": "@blueprintjs/datetime",
3 "version": "4.4.26",
4 "description": "Components for interacting with dates and times",
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-datetime.css",
10 "unpkg": "dist/datetime.bundle.js",
11 "sideEffects": [
12 "**/*.css"
13 ],
14 "scripts": {
15 "clean": "rm -rf dist/* && rm -rf lib/*",
16 "compile": "run-p \"compile:*\"",
17 "compile:esm": "tsc -p ./src",
18 "compile:cjs": "tsc -p ./src -m commonjs --outDir lib/cjs",
19 "compile:esnext": "tsc -p ./src -t esnext --outDir lib/esnext",
20 "compile:css": "sass-compile ./src",
21 "dev": "run-p \"compile:esm -- --watch\" \"compile:css -- --watch\"",
22 "dist": "run-s \"dist:*\"",
23 "dist:bundle": "cross-env NODE_ENV=production webpack",
24 "dist:css": "css-dist lib/css/*.css",
25 "dist:verify": "assert-package-layout",
26 "lint": "run-p lint:scss lint:es",
27 "lint:scss": "sass-lint",
28 "lint:es": "es-lint",
29 "lint-fix": "es-lint --fix && sass-lint --fix",
30 "test": "run-s test:typeCheck test:iso test:karma",
31 "test:typeCheck": "tsc -p ./test",
32 "test:iso": "mocha test/isotest.js",
33 "test:karma": "karma start",
34 "test:karma:debug": "karma start --single-run=false --reporters=helpful --debug",
35 "verify": "npm-run-all compile -p dist test lint"
36 },
37 "dependencies": {
38 "@blueprintjs/core": "^4.17.7",
39 "classnames": "^2.3.1",
40 "react-day-picker": "7.4.9",
41 "tslib": "~2.5.0"
42 },
43 "peerDependencies": {
44 "@types/react": "^16.14.32 || 17",
45 "react": "^16.8 || 17",
46 "react-dom": "^16.8 || 17"
47 },
48 "peerDependenciesMeta": {
49 "@types/react": {
50 "optional": true
51 }
52 },
53 "devDependencies": {
54 "@blueprintjs/colors": "^4.1.20",
55 "@blueprintjs/karma-build-scripts": "^4.0.17",
56 "@blueprintjs/node-build-scripts": "^7.0.4",
57 "@blueprintjs/test-commons": "^1.1.14",
58 "enzyme": "^3.11.0",
59 "karma": "^6.4.1",
60 "mocha": "^10.2.0",
61 "npm-run-all": "^4.1.5",
62 "react": "^16.14.0",
63 "react-dom": "^16.14.0",
64 "react-test-renderer": "^16.14.0",
65 "typescript": "~4.8.4",
66 "webpack-cli": "^5.0.1"
67 },
68 "repository": {
69 "type": "git",
70 "url": "git@github.com:palantir/blueprint.git",
71 "directory": "packages/datetime"
72 },
73 "keywords": [
74 "palantir",
75 "blueprint",
76 "theme",
77 "react",
78 "day",
79 "picker",
80 "date",
81 "time"
82 ],
83 "author": "Palantir Technologies",
84 "license": "Apache-2.0"
85}